
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.
A framework for building reusable JS tasks.
| Feature | Built With |
|---|---|
| Parse CLI arguments | mri |
| Interact with the CLI | Inquirer.js |
| Execute commands | commandland |
| JSON and text store | dot-store |
npm install --save-dev task-env
touch run
chmod +x run
#!/usr/bin/env node
require("task-env")({
args: process.argv.slice(2),
tasks: [
{
sayHello: ({ hello }) => {
console.log(">", hello)
},
},
],
})
./run sayHello --hello=hi
> hi
Export task:
export function sayHello({ hello }) {
console.log(hello)
}
Require task:
#!/usr/bin/env node
require("task-env")({
args: process.argv.slice(2),
tasks: [require("./say-hello")],
})
export async function happy({ ask }) {
let { happy } = await ask([
{
type: "confirm",
name: "happy",
message: "Are you happy?",
},
])
}
See the Inquirer.js prompt docs for available options.
export function sayHello({ tasks }) {
tasks.say({ text: "hello" })
}
export function say({ text }) {
console.log(">", text)
}
Calling through tasks binds the CLI arguments and helper functions, as if the task were called via CLI.
export async function ls({ run }) {
await run("ls", ["/"])
}
See the commandland docs for available options.
Task env uses dot-store to provide an immutable store with atomic filesystem persistence.
Create a directory with some JSON files:
{
"users": {
"bob": {
"key": "~/.ssh/bob_rsa"
}
}
}
The stores option allows you to define multiple named stores:
#!/usr/bin/env node
require("task-env")({
args: process.argv.slice(2),
stores: {
config: {
pattern: "**/*",
root: __dirname,
},
},
tasks: [require("./tasks/user")],
})
Within your task, get and set JSON using dot-style property strings:
export async function user({ config, name, key }) {
if (key) {
await config.set(`users.${name}.key`, key)
}
console.log(">", config.get(`users.${name}`))
}
Run via CLI:
./run user --name=bob --key=~/.ssh/id_rsa
> { key: "~/.ssh/id_rsa" }
| Option | Example | Purpose |
|---|---|---|
| alias | {h: ["help"]} | CLI arguments aliases |
| preSetup | [config=>config] | Pre-setup functions (before argv parsing) |
| setup | [config=>config] | Setup functions |
| stores | {store: {root: __dirname, pattern: "**/*"}} | Store configurations |
| teardown | [args=>{}] | Teardown functions |
| tasks | [{ task: ({})=>{} }] | Task functions |
FAQs
A framework for building reusable JS tasks
We found that task-env 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.