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));
Anchorize all headers and inline a generated TOC, returning processed HTML.
var htmlWithAnchorsAndTOC = toc.process(html [, options]);
RegExp
- Used to match TOC placeholder. Defaults to /<!--\s*toc\s*-->/gi
.toc.anchorize
and toc.toc
methods internally, their options may be specified as well.Parse HTML, returning an array of header objects and anchorized HTML.
var obj = toc.anchorize(html [, options]);
RegExp
- Used to match HTML headers. Defaults to /<h(\d)(\s*[^>]*)>([\s\S]+?)<\/h\1>/gi
.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.Generate TOC HTML from an array of header objects.
var obj = toc.toc(headers [, options]);
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.String
| Function
- Lodash template string or function used to wrap the generated TOC.The default HTML is pretty awesome, but you can customize the hell out of the generated HTML, eg.
var processedHTML = toc.process(unprocessedHTML, {
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.
2014-02-28 - v0.4.0 - Updated a bunch of dependencies. Functionality shouldn't change, and all test pass, but YMMV.
2013-03-08 - v0.3.0 - Separated .process
method internals into .anchorize
and .toc
methods. Renamed toc
template option to TOC
.
2013-03-07 - v0.2.0 - Second official release. Minor changes.
2013-03-07 - v0.1.0 - First official release.
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.