
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Kurami is a console command manager similar to the command system of Symfony.
Nice question, and I have absolutly no answer, in reality it's just birth because needed to setup fixture in a project and wanted to have something clean. But you will probably find a better utility than me ^^
You can install it by using NPM locally :
npm install kurami
or globally :
npm install -g kurami
You can setup Kurami by creating a file named kurami.json
in your project root directory to define the path to your command folder
{
"commandsPath": "./path/to/your/commands/folder"
}
You can create a command file with this structur :
const { BaseCommand } = require('kurami');
class TestCommand extends BaseCommand {
constructor() {
super({
name: 'test:test',
description: 'Test command'
});
}
async run() {
console.log('Test command');
}
}
module.exports = TestCommand;
Then run in your project kurami {commandName} in your project folder
Then run ./node_modules/.bin/kurami {commandName} in your project folder or add a npm script to run it more easily :
{
"scripts": {
"kurami": "kurami"
}
}
Then run npm run kurami {commandName}
And done !
It's an experimental version, some problem persist like sometime the command didn't exit after is end. I'm fully open for suggestion and more ! :D
If you like my work, you can support me by buying me a coffee and/or following me on twitter :D
FAQs
A command console system for nodejs project
We found that kurami 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.