0.3.0 • Published 7 years ago

@bleenco/morose v0.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 years ago

morose

Run npm registry on your own servers.

morose is currently in development mode. It currently supports:

  • registering/uploading packages
  • supports basic semver wildcards (1.1.x) and ranges
  • a few basic routes to see what's registered
  • all packages info is saved in cache

Here's what it doesn't do yet:

  • authentication on publish
  • searching for packages

Installation

$ npm install morose -g

Usage

Running a Server

morose-server

Publishing package to registry

cd into package root directory you want to publish (should have package.json file) and:

morose publish [url:port]

where url is the HTTP url where morose-server is running. ie:

morose publish https://morose.example.com:4720

you can ofc omit port if morose server is running on port 80.

Installing package from morose server

npm install https://morose.example.com:4720/package/[package-name]/latest

or

npm install https://morose.example.com:4720/package/[package-name]/1.1.0

LICENCE

MIT