
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.
Doxicity is a static site generator that turns markdown files into an HTML website. You can configure it, add data, layouts, partials, plugins, and use Handlebars {{expressions}} to do amazing things.
Doxicity is a static site generator that turns markdown files into an HTML website. You can configure it, add data, layouts, partials, plugins, and use Handlebars {{expressions}} to do amazing things.
Designed in New Hampshire by Cory LaViska.
To install Doxicity, run the following command. This assumes you have Node.js installed.
npm i doxicity
Here's a quick example to get you started with Doxicity.
import Doxicity from 'doxicity';
const __dirname = new URL('.', import.meta.url).pathname;
// Configure it
const dox = new Doxicity({
source: Doxicity.resolve(__dirname),
destination: Doxicity.resolve(__dirname, '_site'),
baseUrl: 'https://example.com/'
// more options here...
});
// Publish it
dox
.publish()
.then(result => {
console.log(
`Pages published: ${result.pages.length}\n` +
`Assets copied: ${result.assets.length}\n` +
`Duration: ${result.timeToPublish}ms\n`
);
})
.catch(err => {
console.clear();
console.log(err.message);
});
For more details, please see the documentation.
FAQs
Doxicity is a static site generator that turns markdown files into an HTML website. You can configure it, add data, layouts, partials, plugins, and use Handlebars {{expressions}} to do amazing things.
The npm package doxicity receives a total of 32 weekly downloads. As such, doxicity popularity was classified as not popular.
We found that doxicity 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.