Skip to content
This repository has been archived by the owner on Feb 2, 2019. It is now read-only.

ifduyue/npm-mirror

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NPM Mirror

Gem Version Code Climate

A NPM Mirror that doesn't need couchdb.

Installation

Add this line to your application's Gemfile:

gem 'npm-mirror'

And then execute:

$ bundle

Usage

$ bundle exec bin/npm-mirror [path/to/config.yml]

Or:

$ npm-mirror [path/to/config.yml]

Here is an example of config.yml

- from: http://registry.npmjs.org/
  to: /data/mirrors/npm
  server: http://mymirrors.com/npm/
  parallelism: 10
  recheck: false

Serving via Nginx

server {
    listen 0.0.0.0:80;
    server_name mymirrors.com;
    root /data/mirrors/;
    location /npm/ {
        index index.json;

        location ~ \.etag$ {
            return 404;
        }

        location ~ /index\.json$ {
            default_type application/json;
        }

        # for npm search
        location = /npm/-/all/since {
            rewrite ^ /npm/-/all/;
        }
    }
}

npm install from your mirror

npm install -r http://mymirrors.com/npm/ package

Contributing

  1. Fork it ( https://github.com/ifduyue/npm-mirror/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

About

Mirroring NPM registry without setting up a couchdb

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages