Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
@module-federation/node
Advanced tools
A package to bring the concept and power of module federation to NodeJS.
To install the plugin run one of the following commands in your terminal for your application.
# npm
npm install @module-federation/node
# yarn
yarn add @module-federation/node
There are two approaches to using the plugins exported from this package, dependent on your use case.
This plugin is an abstraction over both NodeFederationPlugin
and ModuleFederationPlugin
. It will alternate between which it uses based on where the build is intended to be used.
If the build is intended to be used on the browser
, it will use the standard ModuleFederationPlugin
and bundle your code accordingly, however, if it is intended for server
usage, it will use NodeFederationPlugin
to create the bundle.
This simplifies the code required in your webpack.config.js
to enable SSR Module Federation. It determines which platform it needs to build for based on two things:
isServer: true
server
It accepts the other standard options from ModuleFederationPlugin
as well. You can see an example usage below:
const {UniversalFederationPlugin} = require("@module-federation/node");
const config = {
target: isServer ? false : "web",
plugins: [
new UniversalFederationPlugin({
name: 'website2',
library: {type: 'commonjs-module'},
isServer: true, // or false
remotes: {},
filename: 'remoteEntry.js',
exposes: {
'./SharedComponent': './remoteServer/SharedComponent',
},
}),
]
}
You can also use each of the underlying plugins individually if you need more control over when they are used.
At build time, you need to be aware if you're building for the server
or for the browser
.
If it's building for server, we need to set target: false
to allow the plugins to function correctly.
The NodeFederationPlugin
follows the same API as the Module Federation Plugin and therefore should be a drop-in replacement if you already have it set up in your webpack.config.js
.
An example configuration is presented below:
const {NodeFederationPlugin, StreamingTargetPlugin} = require("@module-federation/node");
const config = {
target: isServer ? false : "web",
plugins: [
new NodeFederationPlugin({
name: 'website2',
library: {type: 'commonjs-module'},
remotes: {},
filename: 'remoteEntry.js',
exposes: {
'./SharedComponent': './remoteServer/SharedComponent',
},
}),
new StreamingTargetPlugin({
name: 'website2',
library: {type: 'commonjs-module'},
remotes: {},
}),
]
}
This package also exposes a few utilities to help with the setup of your federated application.
Used to "hot reload" the federated application.
import {revalidate} from "@module-federation/node/utils";
// we automatically reset require cache, so the reload callback is only if you need to do something else
revalidate().then((shouldReload) => {
// do something extra after revalidation
if(shouldReload) {
// reload the server
}
});
Hot reloading Express.js
Express has its own route stack, so reloading require cache will not be enough to reload the routes inside express.
//express.js
const app = express();
global.clearRoutes = () => {
app._router.stack = app._router.stack.filter(
k => !(k && k.route && k.route.path)
)
}
// in some other file (within the scope of webpack build)
// wherever you have your revalidation logic
revalidate().then((shouldReload) => {
if(shouldReload) {
global.clearRoutes();
}
});
List of our amazing contributors π₯
FAQs
Module Federation helper for Node
The npm package @module-federation/node receives a total of 34,466 weekly downloads. As such, @module-federation/node popularity was classified as popular.
We found that @module-federation/node demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Β It has 8 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.