🚀 Socket Launch Week 🚀 Day 5: Introducing Socket Fix.Learn More

global-module-reload

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

global-module-reload

Reloads your global npm module while you develop the source files, saving you alot of time!

0.0.5
latest
Version published
Maintainers
1
Created

Global Module Reload

Improve your development speed while developing npm modules that are installed normally via npm install -g

Consider the following workflow

  • You have your npm root folder where your global module is installed with npm install -g
  • You have your source folder where your project source files are located, this is where you develop in
  • Every time you make a change to your source files you have to npm install -g or copy the changed files to the npm root folder
  • Now you can test your changes by executing your global command from the CLI

This is very time consuming and can be reduced by 95% with this module!

Global module reload workflow

  • You execute the globalreload command in your CLI where your root folder of your project source is.
  • First the script copies all your source files to your global npm root folder, so your source files are in sync.
  • A filewatcher is initialized and automaticlly ignoring everything that has been put in your .gitignore and .npmignore files
  • You let the script do his thing and just develop away in your source files. The filewatcher will check for changes including added and deleted files and makes sure everything stays in sync.

preview

How to use it

1. Install

npm install global-module-reload -g

2. Do awesome stuff

globalreload

Remember to execute the command in the root folder of your source files NOT the npm global modules folder

Roadmap

  • Folder removal
  • Folder watcher

Contact

You can contact me at specamps@gmail.com

FAQs

Package last updated on 08 Sep 2016

Did you know?

Socket

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.

Install

Related posts