Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.86 KB

README.md

File metadata and controls

51 lines (36 loc) · 1.86 KB

Nexys web framework

Test Package Publish NPM package NPM package Prettier

Nexys typescript web framework (built on top of Koa and Nexys System SDK)

Setup

App init

see /server for example implementation or https://github.com/nexys-system/server-boilerplate

Cache Initialization

path suggestion: src/service/cache.ts

import { Cache } from '@nexys/core';
export default new Cache.Local({persistent: true });

Middleware Auth

path suggestion: src/middleware/auth.ts

import { Middleware} from '@nexys/core';
import * as Login from '../service/login';
import cache from '../service/cache';

// initalizes the middleware auth with
// - `Profile` defines the JWT Profile shape
// - `UserCache` defines the shape of the information saved in the userCache
// - `cache`reference to the cache
export default new Middleware.Auth<Login.Profile, Login.UserCache>(cache);

Associated projects