osik
TypeScript icon, indicating that this package has built-in type declarations

0.0.5 • Public • Published

osik

osik is a nodejs backend framework centered on performance and weight.

Inspired by koa, only middleware is supported by default, but the handler of this framework is inspired by express, not koa. The concept of middleware is similar to express.


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

const app = osik();

app.use((req, res, next) => {
  res.body = 'Hello World!';
});

app.listen(3000);

Features

  • ⚡ Fast
  • 📦 Light
  • 🚀 Async/Await
  • ⚒️ Middleware

Installation

Install using npm:

npm install osik

async/await

osik supports async/await by default.

app.use(async (req, res, next) => {
  await next();
  console.log('2');
});

app.use(async (req, res) => {
  await new Promise((resolve) => {
    setTimeout(() => {
      resolve();
    }, 1000);
  });

  console.log('1');

  res.body = 'Hello World!';
});

result:

$ node index.js
1
2

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i osik

Weekly Downloads

3

Version

0.0.5

License

none

Unpacked Size

9.76 kB

Total Files

5

Last publish

Collaborators

  • do4ng