Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@docusaurus/utils
Advanced tools
@docusaurus/utils is a utility package for Docusaurus, a popular static site generator. It provides various helper functions and utilities to streamline the development and customization of Docusaurus sites.
Path Utilities
This feature provides utilities for resolving and manipulating file paths, which is essential for managing the structure of a Docusaurus site.
const { resolvePathname } = require('@docusaurus/utils');
const resolvedPath = resolvePathname('/docs', '/baseUrl');
console.log(resolvedPath); // Outputs: '/baseUrl/docs'
Markdown Utilities
This feature includes functions to parse and manipulate Markdown content, which is a core part of creating documentation with Docusaurus.
const { parseMarkdownString } = require('@docusaurus/utils');
const markdownContent = '# Hello World';
const parsedContent = parseMarkdownString(markdownContent);
console.log(parsedContent); // Outputs parsed markdown content as an object
Data Normalization
This feature helps in normalizing URLs, ensuring that they are consistent and correctly formatted across the site.
const { normalizeUrl } = require('@docusaurus/utils');
const normalizedUrl = normalizeUrl(['https://example.com', 'docs']);
console.log(normalizedUrl); // Outputs: 'https://example.com/docs'
Lodash is a modern JavaScript utility library delivering modularity, performance, and extras. It provides a wide range of utility functions for common programming tasks, similar to the utility functions provided by @docusaurus/utils but more general-purpose.
Marked is a fast, lightweight Markdown parser and compiler. It is similar to the Markdown utilities provided by @docusaurus/utils but focuses solely on parsing and compiling Markdown.
The 'path' module in Node.js provides utilities for working with file and directory paths. It is similar to the path utilities in @docusaurus/utils but is a core module in Node.js and not specific to Docusaurus.
@docusaurus/utils
Node utility functions for Docusaurus packages.
FAQs
Node utility functions for Docusaurus packages.
The npm package @docusaurus/utils receives a total of 126,787 weekly downloads. As such, @docusaurus/utils popularity was classified as popular.
We found that @docusaurus/utils demonstrated a healthy version release cadence and project activity because the last version was released less than 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.