Skip to content
/ minima Public

A sketch of a library similar to Express. Built for learning purposes

License

Notifications You must be signed in to change notification settings

KaranP3/minima

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

minima

A rough sketch of a library similar to Express with minimal dependencies that supports existing Express middleware. Built for learning purposes, primarily to explore Express and its internals.

const app = new Minima();

app.get('/hello/:id', (req, res) => res.end(`Hello ${req.params.id}`));
  
app.listen(3000);

Installation

$ npm install

Test

# unit tests
$ npm run test

About

A sketch of a library similar to Express. Built for learning purposes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published