
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.
Static site generator
It’s a static site generator. An SSG. Sausage. Get it? Ha ha. Moving on.
Sausage is a really simple tool with zero dependencies for building static sites with vanilla JavaScript.
The build process revolves around pages and templates.
Pages live in the content folder and are .js files that export things.
Templates live in the templates folder and are .js files that export a function. This function returns a string for a given page.
## How?
Here’s an absurdly simple hello world example.
Imagine this is your page content.
// pages/index.js
export const title = 'Hello, world!';
export const template = 'home';
And this is your template.
// templates/home.js
export default ({ title }) => `<p>${title}</p>`;
Run Sausage to build this to a build directory.
$ npx sausage
Building... done!
$ cat build/index.html
<p>Hello, world!</p>
Hurrah!
FAQs
Static site generator
We found that sausage 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.