
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 TypeScript CLI tool that automates the deployment of nginx reverse proxy configurations for Node.js applications
A TypeScript CLI tool that automates the deployment of nginx reverse proxy configurations for Node.js applications.
# Install globally
npm install -g depsite
# Deploy a site
depsite
# Remove a site
depsite remove my-project
# Show help
depsite --help
# Clone or download the project
cd ~/Desktop/Code/NodeJs/depsite
# Install dependencies
yarn install
# Build the project
yarn build
yarn dev
# Build first
yarn build
# Run the built version
yarn start
# Upstream for my-app Production
upstream my-app_prod {
ip_hash;
server 127.0.0.1:3000;
}
# HTTP Server Block
server {
listen 80;
server_name my-app.example.com;
client_max_body_size 20M;
charset utf-8;
# Custom error pages
error_page 404 /not-found;
error_page 500 502 503 504 /bad-request;
location / {
proxy_pass http://my-app_prod;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_cache_bypass $http_upgrade;
proxy_read_timeout 300s;
proxy_connect_timeout 75s;
}
}
depsite/
├── src/
│ └── index.ts # Main application file
├── dist/ # Compiled JavaScript (after build)
├── package.json # Project configuration
├── tsconfig.json # TypeScript configuration
└── README.md # This file
MIT License - see LICENSE file for details
FAQs
A TypeScript CLI tool that automates the deployment of nginx reverse proxy configurations for Node.js applications
We found that depsite demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.