Skip to content

krzyurb/ijik

Repository files navigation

ijik

Another web framework for Node.js.

Install

# install with npm:
npm install krzyurb/ijik

# or with yarn:
yarn add https://github.com/krzyurb/ijik

Usage Example

const { ijik } = require('ijik');

// basic server config
const config = { appName: 'myIjikApp', port: 3131 };

// create application
const app = ijik(config);

// define endpoint
app.addEndpoint({
  path: "/hello/:name",
  handler: (req: IRequest) => {
    const { params: { name } } = req;
    return `Hello, ${name}!`;
  },
});

// run server
app.listen();

Name

From Proto-Inuit *irǝ, from Proto-Eskimo *irǝ. Cognate of Greenlandic isi and Inupiaq iri.

source: wiktionary.org

About

node.js web framework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published