
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
@nx-plus/docusaurus
Advanced tools
First class support for Docusaurus in your Nx workspace.
If you have not already, create an Nx workspace with the following:
npx create-nx-workspace@^15.0.0
# npm
npm install @nx-plus/docusaurus --save-dev
# yarn
yarn add @nx-plus/docusaurus --dev
nx g @nx-plus/docusaurus:app my-app
nx serve my-app
nx g @nx-plus/docusaurus:app <name> [options]
Arguments | Description |
---|---|
<name> | The name of your app. |
Options | Default | Description |
---|---|---|
--tags | - | Tags to use for linting (comma-delimited). |
--directory | apps | A directory where the project is placed. |
--skipFormat | false | Skip formatting files. |
nx serve <name> [options]
Arguments | Description |
---|---|
<name> | The name of your app. |
Options | Default | Description |
---|---|---|
--port | 3000 | Use specified port. |
--host | localhost | Use specified host. |
--hotOnly | false | Do not fallback to page refresh if hot reload fails. |
--open | false | Open page in the browser. |
nx build <name> [options]
Arguments | Description |
---|---|
<name> | The name of your app. |
Options | Default | Description |
---|---|---|
--bundleAnalyzer | false | Visualize size of webpack output files with an interactive zoomable treemap. |
--outputPath | - | The full path for the new output directory, relative to the current workspace. |
--minify | true | Build website minimizing JS bundles. |
Nx Plus Docusaurus provides migrations which help you stay up to date with the latest version of Nx Plus Docusaurus.
Not only do we migrate the version of Nx Plus Docusaurus, but we also update the versions of dependencies which we install such as @docusaurus/core
and react
.
We recommend waiting for Nx Plus Docusaurus to update these dependencies for you as we verify that these versions work together.
All you have to do to update Nx Plus Docusaurus to the latest version is run the following:
nx migrate @nx-plus/docusaurus
nx migrate @nx-plus/docusaurus@version # you can also specify version
This will fetch the specified version of @nx-plus/docusaurus
, analyze the dependencies and fetch all the dependent packages. The process will keep going until the whole tree of dependencies is resolved. This will result in:
package.json
being updatedmigrations.json
being generatedAt this point, no packages have been installed, and no other files have been touched.
Now, you can inspect package.json
to see if the changes make sense and install the packages by running npm install
or yarn
.
migrations.json
contains the transformations that must run to prepare the workspace to the newly installed versions of packages. To run all the migrations, invoke:
nx migrate --run-migrations=migrations.json
If you encounter this error while building a Docusaurus app, then you may need to add a terser
resolution to your package.json
. Note: this only works with Yarn and not npm.
Error:
Docusaurus user: you probably have this known error due to using a monorepo/workspace.
We have a workaround for you, check https://github.com/facebook/docusaurus/issues/3515
package.json:
{
// ...
"resolutions": {
"terser": "^4.0.0"
}
// ...
}
Once this has been updated, you should be able to run yarn install
and then build your Docusaurus application.
FAQs
Docusaurus plugin for Nx
The npm package @nx-plus/docusaurus receives a total of 5,277 weekly downloads. As such, @nx-plus/docusaurus popularity was classified as popular.
We found that @nx-plus/docusaurus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.