
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@pulsor/cli
Advanced tools
Vite-based development environment to facilitate running and building pulsor apps.
It mostly extends vite, then adds pulsor-specific features.
Huge praise to vite / esbuild for doing the heavy lifting.
For documentation on how to write pulsor apps, checkout the main repo!
Install the @pulsor/cli CLI
npm i -g @pulsor/cli
Create a new app and run it:
# Create new app
echo "export default (
<h1>Hi! 👋</h1>
);" > App.tsx;
# Run it in dev mode
pulsor App.tsx --open;
First line creates a file called "App.tsx" and fills it hello world content. Second line starts the dev server with the "App.tsx" file as the "Root vNode".
Build for prod:
pulsor build App.tsx
Preview prod build:
pulsor serve
run
pulsor <app definition entrypoint>
ex:
pulsor App.tsx
The entrypoint resolves like a node module, so you can also do:
// or
pulsor App
// or
pulsor some/path
// which is same as
pulsor some/path/index
// or
pulsor
// which is same as
pulsor index
The entrypoint file should export the root vNode of your application.
TODO
Checkout the vite docs for all non pulsor specific information: https://vitejs.dev/
FAQs
Vite-based development environment for building pulsor apps.
The npm package @pulsor/cli receives a total of 2 weekly downloads. As such, @pulsor/cli popularity was classified as not popular.
We found that @pulsor/cli 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.