
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.
@baseplate-sdk/web-app
Advanced tools
First, install pnpm and Docker. Ensure your NodeJS version is >=20.
# Create .env files
cp .env.example .env.dev
# Now fill in values of .env.dev
# Now pnpm install
pnpm install
pnpm run develop
# new terminal tab
pnpm exec sequelize db:migrate
pnpm exec sequelize db:seed:all
open http://localhost:7600
To debug the NodeJS server in Visual Studio Code, first start up the database and frontend:
pnpm run dev:vscode
Then click on "Run and Debug" in VS Code, and press Start for Develop Backend.
docker-compose exec db bash
psql baseplate
# show tables
\dt
select * from "Users";
Database migrations are done via sequelize cli. You must run them manually whenever there's a new migration. Make sure you are running pnpm run develop or pnpm run develop:db before attempting to run migrations.
# Run migrations
pnpm exec sequelize db:migrate
# Undo last migration
pnpm exec sequelize db:migrate:undo
# Undo all migrations
pnpm exec sequelize db:migrate:undo:all
# Create migration
pnpm exec sequelize migration:create --name INSERTNAMEHERE
Seed data (sample user, etc) is created via sequelize cli. You must run them manually. Make sure you are running pnpm run develop or pnpm run develop:db before attempting to seed.
# Run seeds
pnpm exec sequelize db:seed:all
# Undo last migration
pnpm exec sequelize db:seed:undo
# Undo all seeds
pnpm exec sequelize db:seed:undo:all
# Create migration
pnpm exec sequelize seed:create --name INSERTNAMEHERE
If you want to just nuke your database and start fresh, run the following commands:
docker-compose down -v
docker-compose up -d
sleep 1
pnpm exec sequelize db:migrate
pnpm exec sequelize db:seed:all
FAQs
Customer web app for Baseplate
We found that @baseplate-sdk/web-app 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.