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

67 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

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