
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
create-nodex
Advanced tools
CLI tool to create modern Node.js projects with TypeScript, AI capabilities, and more
Install globally:
npm install -g create-nodex
Or use directly with npx:
npx create-nodex
create-nodex [project-name]
If [project-name] is omitted, you'll be guided through an interactive setup:
With project name, creates a project with default settings:
Navigate to your project directory:
cd my-project
create-nodex add express
This will:
express dependencysrc/server.ts (or src/server.js)create-nodex add ai
This will:
create-nodex add ai-rag
This will:
my-project/
├── src/
│ ├── index.ts (or index.js)
│ ├── server.ts (if Express added)
│ └── ai/
│ ├── common/
│ │ └── ai-setup.ts
│ ├── [model-provider]/
│ │ └── [model]-example.ts
│ └── rag/
│ └── rag-example.ts
├── package.json
├── nodemon.json (if hot-reload enabled)
├── tsconfig.json (for TypeScript projects)
├── .gitignore
└── README.md
# Start development server
npm run dev:server
# Run tests
npm test
# Build for production
npm run build
Contributions are welcome! Please feel free to submit a Pull Request.
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
CLI tool to create modern Node.js projects with TypeScript, AI capabilities, and more
We found that create-nodex 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.