Skip to content

ismnoiet/dmef

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dmef

Double Minimal Express.js framework, it can be used for experimentation and learning purposes as it simplified the maximum, even a beginner programmer can read and understand the code source.

PRs Are welcome.

Install

npm install  --save dmef

Usage

// example
var App = require('dmef');

var app = new App();

app.get('/',function(request,response){	
	response.end('You are in the home page');
});

app.get('/contact',function(request,response){	
	response.end('You are in the contact page');
});

// listen on any port you wish, in this example 3000 
app.listen(3000);

You can execute the default example by running :

node example/index.js

TODO

  • Add other essential parts.

License

MIT © ismnoiet

About

Double Minimal Express.js Like Framework, it can be used for experimentation and learning purposes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published