Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Lightweight application framework with dyependency injection and dynamic type checking for node js
Hello world example in appix
npm install appix
app/env.json
{
"components": {
"appix/logger": {
"enabled": true,
"console": true,
"level": 30
},
"appix/router": {
"useCustomErrorHandler": false
}
}
}
'use strict';
let di = require('appix');
let Bootstrap = di.load('@{appix}/bootstrap');
// bootstrap application
let init = new Bootstrap({
listenPort: 9000,
appPath: __dirname + '/'
});
// set bootstrapped instance under custom name
di.setInstance('node', init);
// get router component
let router = init.getComponent('appix/router');
// add some routes
// Route actions are case sensitive!
router.add([
{
url: '/',
route: 'home/Index'
},
{
url: '/goto301',
route: 'home/Redirect301'
},
{
url: '/goto',
route: 'home/Redirect'
},
{
url: '/favicon.ico',
route: 'home/myfaviconhandler'
}
]);
// run server
init.listen();
'use strict';
let di = require('appix');
let Controller = di.load('@{appix}/controller');
// Controllers can be inherited as many levels as you need
class Home extends Controller {
actionRedirect() {
return this.redirect('/', 302);
}
actionRedirect301() {
return this.redirect('/', 301);
}
actionIndex() {
return 'Hello world';
}
}
module.exports = Home;
FAQs
Lightweight application framework with dyependency injection and dynamic type checking for node js
The npm package appix receives a total of 2 weekly downloads. As such, appix popularity was classified as not popular.
We found that appix 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.