
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.
openconductor-install
Advanced tools
OpenConductor installer - Zero-config setup for enterprise-ready platform engineering
Official OpenConductor installer package for seamless setup across all platforms.
# Latest stable release
npx openconductor-install
# With options
npx openconductor-install --enterprise --port 8080
# Basic installation
curl -fsSL https://install.openconductor.ai | bash
# Enterprise installation
curl -fsSL https://install.openconductor.ai | bash -s -- --enterprise
# Custom directory and port
curl -fsSL https://install.openconductor.ai | bash -s -- --directory ./my-openconductor --port 8080
# Coming soon - use NPM method for now
iwr https://install.openconductor.ai/install.ps1 | iex
| Option | Description | Example |
|---|---|---|
--enterprise | Enable enterprise features from start | npx openconductor-install --enterprise |
--community-only | Install community edition only | npx openconductor-install --community-only |
--directory <path> | Custom installation directory | npx openconductor-install --directory ./my-oc |
--port <port> | Frontend port number | npx openconductor-install --port 8080 |
--team-size <size> | Expected team size (enterprise) | npx openconductor-install --enterprise --team-size 10 |
--sso | Enable SSO configuration | npx openconductor-install --enterprise --sso |
--compliance | Enable compliance features | npx openconductor-install --enterprise --compliance |
--silent | Silent installation with defaults | npx openconductor-install --silent |
--dev | Development mode installation | npx openconductor-install --dev |
Perfect for individual developers and small projects.
npx openconductor-install --community-only
Features:
Designed for small to medium development teams.
npx openconductor-install --enterprise --team-size 5
Additional Features:
Full-featured enterprise platform with advanced security and compliance.
npx openconductor-install --enterprise --sso --compliance --team-size 50
Additional Features:
After installation completes:
Access the Platform
First Steps
Enterprise Setup (if applicable)
npx openconductor-install status --directory ./openconductor
npx openconductor-install upgrade --directory ./openconductor
npx openconductor-install uninstall --directory ./openconductor
npx openconductor-install uninstall --directory ./openconductor --keep-data
Port Conflicts
# Check what's using port 5174
lsof -i :5174 # macOS/Linux
netstat -ano | findstr :5174 # Windows
# Install with different port
npx @openconductor/install --port 8080
Permission Errors
# Fix npm permissions (macOS/Linux)
sudo chown -R $(whoami) $(npm config get prefix)/{lib/node_modules,bin,share}
# Or use different directory
npx @openconductor/install --directory ~/openconductor
Network Issues
# Configure npm proxy
npm config set proxy http://proxy.company.com:8080
npm config set https-proxy http://proxy.company.com:8080
# Try different registry
npm config set registry https://registry.npmjs.org/
git clone https://github.com/OpenConductor-ai/openconductor.git
cd openconductor/packages/install
npm install
npm run build
npm link
npm test
See CONTRIBUTING.md for guidelines.
MIT License - see LICENSE file for details.
Built with ❤️ by the OpenConductor Community
FAQs
OpenConductor installer - Zero-config setup for enterprise-ready platform engineering
We found that openconductor-install 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
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.