Skip to content
/ nest Public

A lightweight web server built on top of Node with zero dependencies and extensibility in mind.

License

Notifications You must be signed in to change notification settings

cisoun/nest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A lightweight web server built on top of Node.js with zero dependencies and extensibility in mind.

Usage

const nest = require('nest');
const app = nest();
app.get('/api/hello', (req, res) => res.code(200).json({message: 'Hello!'}));
app.run('localhost', 3000);

Built-in features

Optional

These modules require external dependencies that must be installed manually in order to use them. Please read their documentation to know which module is required.

License

Nest is distributed under GNU General Public License version 3. See LICENSE.

About

A lightweight web server built on top of Node with zero dependencies and extensibility in mind.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published