Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@loveholidays/razzle-dev-utils
Advanced tools
This package includes some utilties used by Razzle
These utilities come by default with Razzle, which includes it by default. You don’t need to install it separately in Razzle projects.
If you don’t use Razzle, you may keep using these utilities. Their development will be aligned with Razzle, so major versions of these utilities may come out relatively often. Feel free to fork or copy and paste them into your projects if you’d like to have more control over them, or feel free to use the old versions.
There is no single entry point. You can only import individual top-level modules.
logger
logger.log(thing: any): void
: Log to console. = console.log
logger.start(text: string): void
: Log the start of a task to consolelogger.done(text: string): void
: Log the end of task to consolelogger.info(text: string, data: object): void
: Log information and data to consolelogger.debug(text: string, data: object): void
: Log debug message and data to consolelogger.warn(text: string, data: object): void
: Log a warning with message and data to consolelogger.error(text: string, err: object): void
: Log a message and an error to consolenew FriendlyErrorrWebpackPlugin({ verbose: boolean, onSuccessMessage: string, target: 'web' | 'server' })
This will pretty print webpack errors to your console. It is mean to be used with Razzle's double webpack setup, where you have two webpack instances running in parallel. Otherwise the output looks almost identical to create-react-app's
as it uses the same error formatter under the hood.
const FriendlyErrorsPlugin = require('razzle-dev-utils/FriendlyErrorsPlugin');
module.exports = {
// ...
plugins: [
new FriendlyErrorsPlugin({
verbose: false,
target: 'web'
onSuccessMessage: `Your application is running at http://${process.env.HOST}:${process.env.PORT}`,
}),
// ...
],
// ...
}
printErrors(summary: string, errors: Error[])
Pretty print an array of errors with a message. Good for CI's.
const printErrors = require('razzle-dev-utils/printErrors');
try {
// do something
} catch (e) {
printErrors('Failed to compile.', [e]);
}
makeLoaderFinder(loaderName: string): (rule: WebPackRule) => boolean;
Helper function to find a loader in the webpack config object. Used for writing Razzle Plugins, or razzle modify functions.
Example:
// razzle.config.js
const loaderFinder = require('razzle-dev-utils/makeLoaderFinder');
module.exports = {
modify(config) {
// Makes a finder function, to search for babel-loader
const babelLoaderFinder = makeLoaderFinder('babel-loader');
// Finds the JS rule containing babel-loader using our function
const jsRule = config.module.rules.find(babelLoaderFinder);
// Set cacheDirectory to true in our babel-loader
jsRule.use.find(babelLoaderFinder).options.cacheDirectory = true;
}
}
FAQs
Utilities and helpers for Razzle
The npm package @loveholidays/razzle-dev-utils receives a total of 3 weekly downloads. As such, @loveholidays/razzle-dev-utils popularity was classified as not popular.
We found that @loveholidays/razzle-dev-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.