Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 345 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 345 Bytes

enum-hub

Install

$ npm install @mopeys/enum-hub

Usage

const eh = new EnumHub({
  fetchRemote: async (name) => {
    return await fetch(`/api/enum/${name}`);
  },
});

async function main() {
  await eh.getEnum("MEDICAL_TYPE"); // first time, from remote
  await eh.getEnum("MEDICAL_TYPE"); // from local
}

main();