Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
MVCfun is an model-view-controller based web server framework.
Register controllers to ressource paths. You may use regular expressions for this to register a controller to a bunch of paths at once.
This project is under high development and new features pop out every week. Contributers are very welcome.
var mvcfun = require('mvcfun'),
controller = mvcfun.controller,
regexp = mvcfun.regexp;
var server = (new mvcfun.http.Server())
.listen(8080)
.on('error', function(err) {
console.log(err.stack);
server.close(function() { process.exit(1) });
});
server.addController(new controller.Static(regexp.files));
server.addController(new controller.Forbidden(regexp.directories));
This creates an http server listening on port 8080. It serves all static files located relatively to the default directory 'htdocs' and forbid any access to directories.
The model-view-controller pattern is well known in web development. Using this pattern makes code more readable and maintable without loosing performance.
- MVC based developing the cool way
- Easy controller handling
- Maintainable code
- Increadibly fast
- RESTFul developing possible in same framework
- Swig template engine included
- Multi-language page support (including SEO features)
- High unit test coverage
The main idea of MVCFun is to design your web project based on model, views and controllers. The key part are the controllers, because they connect the models with the views.
Therefore it's absolutely necessary to be able to create custom controllers very easily. This is one main feature of MVCFun.
// The Hello World
var mvcfun = require('mvcfun'),
controller = mvcfun.controller,
util = require('util'),
regexp = mvcfun.regexp;
var HelloWorldController = function(filename) {
controller.Base.call(this, filename);
};
util.inherits(HelloWorldController, controller.Base);
HelloWorldController.prototype.run = function(resp, path) {
this.responseManager.writeText(resp,'Hello World!');
};
var server = (new mvcfun.http.Server()).listen(8080);
server.addController(new HelloWorldController('/helloworld'));
If you run this example and surfs at "localhost:8080/helloworld" you will read "Hello World!" as plain text response.
For sure, the controllers should be organized in seperate files (one per controller). The controller can easily require any class to connect to them (models) and use any kind of template engine to create the view. There is build in swig support.
The most simple way to install MVCfun is using npm:
npm install mvcfun
There you will get the last stable release containing all features.
MVCfun is organized in branches. Each branch has its own set of features. For instance the swig branch contains swig binding and a swig base controller.
If you want the naked framework, checkout the minimal branch. You may merge as many of the feature branches together as you want.
The master branch contains all features merged together and the versions published in npm come from the master branch.
FAQs
MVC based web server framework
We found that mvcfun demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.