/node-prune

Remove unnecessary files from node_modules (.md, .ts, ...)

Primary LanguageShellMIT LicenseMIT

What?

node-prune is a small tool to prune unnecessary files from ./node_modules, such as markdown, typescript source files, and so on. Primarily built for Up which lets you deploy serverless web applications in seconds.

Installation

From source:

$ go get github.com/tobias-klein/node-prune/cmd/node-prune

From binary to ./bin/node-prune:

$ curl -sfL https://raw.githubusercontent.com/tobias-klein/node-prune/master/godownloader.sh | bash

From binary to /usr/local/bin/node-prune:

$ curl -sfL https://raw.githubusercontent.com/tobias-klein/node-prune/master/godownloader.sh | bash -s -- -b /usr/local/bin

Usage

In your app directory:

$ node-prune

files total 27,330
files removed 3,990
size removed 13 MB
   duration 200ms

Somewhere else:

$ node-prune path/to/node_modules

files total 27,330
files removed 3,990
size removed 13 MB
   duration 200ms

Or add to the package.json scripts field

  "scripts": {
    "postinstall": "node-prune"
  }

Why?

huge


GoDoc