Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Linkify HTML headers and generate a TOC.
Install the module with: npm install toc
var toc = require('toc');
Strip HTML tags from a string.
var stripped = toc.untag(html);
Convert a string of text into something URL-friendly and not too fugly.
var anchor = toc.anchor(arbitraryText);
Get a unique name and store the returned name in names for future unique-name-gettingness.
var names = {};
var guaranteedUniqueAnchor1 = toc.unique(names, toc.anchor(arbitraryText));
var guaranteedUniqueAnchor2 = toc.unique(names, toc.anchor(arbitraryText));
var htmlWithAnchorsAndTOC = toc.process(html [, options]);
Number
- Min header level to add to TOC. Defaults to 2
.Number
- Max header level to add to TOC. Defaults to 6
.Number
- Min header level to anchorize. Defaults to 2
.Number
- Max header level to anchorize. Defaults to 6
.String
| Function
- Lodash template string or function used to anchorize a header.String
| Function
- Lodash template string or function used to wrap the generated TOC.String
| Function
- Lodash template string or function used to generate the TOC.String
| Function
- Lodash template string or function used to generate the TOC.String
| Function
- Lodash template string or function used to generate the TOC.String
| Function
- Lodash template string or function used to generate the TOC.RegExp
- Used to match TOC placeholder. Defaults to /<!--\s*toc\s*-->/gi
.You can customize the hell out of the generated HTML, eg.
var htmlWithAnchorsAndTOC = toc.process(html, {
header: '<h<%= level %><%= attrs %> id="<%= anchor %>"><%= header %></h<%= level %>>',
toc: '<div class="toc"><%= toc %></div>',
openUL: '<ul data-depth="<%= depth %>">',
closeUL: '</ul>',
openLI: '<li data-level="H<%= level %>"><a href="#<%= anchor %>"><%= text %></a>',
closeLI: '</li>',
});
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
2013-03-07 - v0.1.0 - First official release.
Copyright (c) 2013 "Cowboy" Ben Alman
Licensed under the MIT license.
FAQs
Linkify HTML headers and generate a TOC.
The npm package toc receives a total of 2,701 weekly downloads. As such, toc popularity was classified as popular.
We found that toc 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.