Giter Club home page Giter Club logo

fetchstrings's Introduction

Fetchstrings - fetch with multiple language strings

Example

strings/en.json

{
  "UNKNOWN_ERROR": "An unknown error has occurred.",
  "TEST_ERROR": "Test error!"
}

Strings server

import Strings from "fetchstrings/dist/strings";
import express from "express";

const app = express();

app.use(express.json());

app.post("/", (req, res) => {
  const { id } = req.body;

  if (id === "test") {
    return res.status(400).send({
      reason: "TEST_ERROR",
    });
  }

  res.status(200).send({
    data: "hello world!",
  });
});

new Strings(app);

app.listen(3000, () => {
  console.log("Run!");
});

FetchStrings

import FetchStrings from "fetchstrings";

const fetchStrings = new FetchStrings("http://localhost:3000");

(async () => {
  await fetchStrings.loadStrings("en");

  try {
    console.log(
      await fetchStrings.fetchStrings("/", {
        method: "POST",
        headers: {
          "Content-Type": "application/json",
        },
        body: JSON.stringify({ id: "test" }),
      })
    );
  } catch (err) {
    console.log(err);
  }
})();

BaseAPI

import { BaseAPI, Strings } from "./fetchstrings";

class TestAPI extends BaseAPI {
  async index(id: string) {
    return this.post("/", { id: id });
  }
}

(async () => {
  const testAPI = new TestAPI("http://localhost:3000");
  await testAPI.load("en");

  try {
    console.log(await testAPI.index("test"));
  } catch (err) {
    console.log(err);
  }
})();

fetchstrings's People

Contributors

smiilliin avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.