
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.
create-hotdogjs
Advanced tools
This is a HotdogJS project - HotdogJS is a Bun-optimized framework for LiveViews.
public - Public / static files and assets (javascript compiled to public/js)views - Directory for all LiveViewsviews/index.ts - Sample LiveView that loads at http://localhost:3000/layouts/default.html - Default layout for all LiveViewsThat's it! HotdogJS automatically handles the rest for you.
This project comes with two ways to run the project:
bun dev - starts the project in development mode (with live reload)bun run - starts the project in production mode (without live reload)HotdogJS uses file-based routing, so to add a new LiveView, simply create a new file in the views directory with a default export that extends BaseView and implements the required methods like so:
import { html, BaseView } from 'hotdogjs';
export default class MyView extends BaseView<MyEvent> {
render() {
return html`
<h1>Hello, World!</h1>
`;
}
}
The name of the file will be the route for the LiveView, so views/my-view.ts will be available at http://localhost:3000/my-view. You can also use subdirectories to create nested routes. See FileSystemRouter for more details.
If you want to configure the Hotdogjs server directly and/or override the default client javascript, you can simply run bun eject which will create a copy of the server and client into your project so you can modify them to your heart's content.
To learn more about HotdogJS, visit the HotdogJS Documentation.
This project was created using the create-hotdogjs package.
FAQs
My Awesome HotdogJS project
We found that create-hotdogjs demonstrated a not healthy version release cadence and project activity because the last version was released 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.