Noapi
A high-performance and easy-to-use web API framework for Node.js. Noapi loads directory "biz" as a web API server, each file in it defines and handles an API, so that you can focus on writing business function code. Noapi is simple enough that you just take it "out of the box".
Install
npm install noapi --save
TRY IT! (in under 3 minutes)
0. Initialize a demo project
mkdir ./noapi-demo && cd ./noapi-demonpm init -ynpm install noapi --save
Create the core directory "biz"
mkdir biz
1. Create a biz file
Create file "./biz/say/hi.js". It defines an api "/say/hi" and handles it.
moduleexports = async { return msg: `Hi, I am , years old.`;};
2. Create index.js
;
3. Run
node index.jsServer default is listening on port 3000
Visit the url http://localhost:3000/say/hi?age=100&name=owen to see the result:
The order of the parameters in the url can be arbitrary.
Examples
- 01 hello world
- 02 complex url params
- 03 returning an error
- 04 throwing an error
- 05 api directory
- 06 with database
- 07 static resources
- 99 options
Options
It can be omitted if it is the default value as below.
const name = 'default';const dir = './biz';const host = 'localhost';const port = 3000; const isSilence = false; // The number and order of parameters can be arbitrary; // It is equivalents to:// const options = {// name: 'default',// dir: './biz',// host: 'localhost',// port: 3000,// isSilence: true,// };//// noapi(options);
See "examples/99-options" to learn about it.
Biz directory
Each file in the biz directory defines and handles an API. All files in the biz directory make up the API list.
/root /biz /say hijs // api: /say/hi aboutjs // api: /about indexjs
If there are some non-api files (only be used internally) in the biz directory, this will make the API list unclear. Then you should use the api directory, just create an empty file (or with the description of this api) to define an api. See "examples/05-api-directory".
/root /api /say hijs // api: /say/hi aboutjs // api: /about /biz /__lib /say /__lib hijs toolsjs // non-api checkjs // non-api aboutjs initjs // non-api indexjs
Performance
Noapi is a high-performance web API framework, faster than Koa, Express. See API Framework Performance PK
Test
git clone https://github.com/hiowenluke/noapicd noapinpm installnpm test
License
Copyright (c) 2019, Owen Luke