
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.
Type declarations and documentation for native JS modules available on Bruce
The Bruce JavaScript tooling provides tools and type definitions to help you build applications for the Bruce platform.
To create a new Bruce application with TypeScript support and modern JavaScript (ES6+) features, use the interactive setup wizard (you need to have node.js installed):
npx create-bruce-app@latest
Once the setup is complete, navigate to your project folder and start the application:
cd my-bruce-app
npm run start
You can use pnpm or yarn instead of npm if preferred.
If you use the setup wizard (npx create-bruce-app@latest), your project will support TypeScript and modern JavaScript features like:
let and const.for...of loops.() => {}).import isEven from "is-even";).Object.entries(), Promise, async/await, setInterval, setTimeout (for now).However, if you upload scripts directly without using the setup wizard, they must be written in ES5. This means:
let (use var instead).for...of loops (use traditional for loops with indexes).() => {} (use function instead).import ir from 'ir' import syntax use const ir = require('ir'); instead.Object.entries(), Promise, async/await, setInterval, setTimeout (for now).When uploading scripts to Bruce, keep in mind:
.js) files can be uploaded..ts) files, you must first compile it to JavaScript (.js)..js file will be in bundle/ folder.If you need TypeScript or modern JavaScript features, always create your project using the setup wizard.
https://github.com/Tawank/bruce-js-tooling/blob/master/packages/bruce-sdk/DOCS.md
FAQs
Type declarations and documentation for native JS modules available on Bruce
We found that bruce-sdk 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.