Popularity
0.2
Stable
Activity
5.1
Declining
1
1
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.
-
Release It! ๐
๐ Automate versioning and package publishing -
lightproxy
๐ Cross platform Web debugging proxy -
iProxy
๐ Cross platform Web debugging proxy๏ผfork of LightProxyใLinux & ๅค็ฝๅกๆฏๆ๏ผ
Appwrite - The Open Source Firebase alternative introduces iOS support
Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
Promo
appwrite.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()
]
}