Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dmef

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dmef

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

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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

FAQs

Package last updated on 24 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc