Popularity
0.4
Stable
Activity
0.0
Declining
2
2
0
Programming language: JavaScript
#<Sawyer::Resource:0x00007f31d4bbc120> alternatives and similar libraries
Based on the "Tooling" category.
Alternatively, view webpack-memory-plugin alternatives based on common mentions on social networks and blogs.
SurveyJS - JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.
Promo
surveyjs.io

Do you think we are missing an alternative of #<Sawyer::Resource:0x00007f31d4bbc120> or a related project?
README
🐏 Webpack Memory Plugin
Displays amount of RAM used after the webpack compilation
Installation
In case of npm
npm i -D @decodeapps/webpack-memory-plugin
In case of yarn:
yarn add -D @decodeapps/webpack-memory-plugin
Example
Add following to the webpack.config.js
:
const WebpackMemoryPlugin = require('@decodeapps/webpack-memory-plugin');
// other plugins
module.exports = {
// other statements
plugins: [
new WebpackMemoryPlugin()
]
}