Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Javascript Library for CLI applications.
#!/usr/bin/env node
const program = require('animaux');
const app = new program('my-app');
app.version('1.0.0').action((command) => {
console.log(`> Cannot execute ${command}`);
});
app
.command('build <src>')
.describe('build amazing application!')
.option('--output, -o', 'Provide output path.', 'out.js')
.action((src, options) => {
console.log(`Building "${src}"...`);
console.log(' options: ', options);
});
app.parse(process.argv);
$ my-app --help
Usage
$ my-app <command> [options]
Commands
build build amazing application!
Options
--help, -h Displays help information.
--version, -v Displays current version.
--output, -o Provide output path. (default out.js)
Run `my-app <command> --help` for more information.
$ my-app build --help
Usage
$ my-app build <src>
build amazing application!
Alias
$ my-app b
$ my-app build
Options
--help, -h Displays help information.
--version, -v Displays current version.
--output, -o Provide output path. (default out.js)
$ my-app build index.ts --output build.js
Building "index.ts"...
options: { output: 'build.js', __: [ 'build', 'index.ts' ] }
MIT
FAQs
Javascript Library for CLI applications.
The npm package animaux receives a total of 184 weekly downloads. As such, animaux popularity was classified as not popular.
We found that animaux 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.