
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@devx-cli/devx
Advanced tools
A TypeScript-based CLI tool for project management and task execution.
npm install -g @devx-cli/devx
Or use it directly with npx:
npx @devx-cli/devx <command>
.devx file..devx file.devx init
This will create a .devx file in your current directory with default settings.
devx run <script|task>
devx validate
devx info
devx list
The .devx file uses YAML format:
project:
name: "my-app"
type: "web"
language: "node"
version: "1.0.0"
scripts:
build: "npm run build"
dev: "vite"
lint: "eslint ."
tasks:
- name: "deploy"
run: "bash scripts/deploy.sh"
description: "Deploy the application to production"
env:
PORT: "3000"
NODE_ENV: "development"
plugins:
- name: "example-plugin"
path: "./plugins/example-plugin.js"
config:
enabled: true
Plugins can hook into various lifecycle events:
onInit: Called when the plugin is initializedonRun: Called before a script or task is runonValidate: Called during validationonInfo: Called when displaying project infoExample plugin:
import { DevxConfig, DevxPlugin } from '@devx-cli/devx';
export default function createPlugin(config: any): DevxPlugin {
return {
name: 'my-plugin',
onInit(config: DevxConfig) {
console.log('Plugin initialized');
},
onRun(scriptName: string, command: string) {
console.log(`Running ${scriptName}`);
},
onValidate(config: DevxConfig): string[] {
return []; // Return validation errors
},
onInfo(config: DevxConfig) {
console.log('Custom project info');
},
};
}
To enhance your experience with .devx files in Visual Studio Code, we've created a VS Code extension that provides a custom icon for .devx files without changing your existing file icon theme.
You can install the extension from the VS Code Marketplace:
Alternatively, you can install it directly from the command line:
code --install-extension DevX-cli.devx-file-icon
Or use the built-in command in the DevX CLI:
devx install-extension
.devx files in the VS Code file explorerMIT
FAQs
A TypeScript-based CLI tool for project management and task execution
The npm package @devx-cli/devx receives a total of 2 weekly downloads. As such, @devx-cli/devx popularity was classified as not popular.
We found that @devx-cli/devx demonstrated a healthy version release cadence and project activity because the last version was released less than 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.