Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
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/Favicon'
}
]);
// 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 7 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.