Code Monkey home page Code Monkey logo

noapi's Introduction

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-demo
npm init -y
npm 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.

module.exports = async (name, age) => {
    return {msg: `Hi, I am ${name}, ${age} years old.`};
};

2. Create index.js

require('noapi')();

3. Run

node index.js
Server default is listening on port 3000

Visit the url http://localhost:3000/say/hi?age=100&name=owen to see the result:

{
    "success": true,
    "data": {
        "msg": "Hi, I am owen, 100 years old."
    }
}

The order of the parameters in the url can be arbitrary.

Examples

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
noapi(name, dir, host, port, isSilence);

// 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
            hi.js       // api: /say/hi
        about.js        // api: /about
     
    index.js    

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
            hi.js       // api: /say/hi
        about.js        // api: /about

    /biz
        /__lib
        /say
            /__lib
            hi.js   
            tools.js    // non-api
            check.js    // non-api
        about.js       
        init.js         // non-api
        
    index.js

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/noapi
cd noapi
npm install
npm test

License

MIT

Copyright (c) 2019, Owen Luke

noapi's People

Contributors

collinemac avatar elanandkumar avatar hiowenluke avatar wasabithumb avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

noapi's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.