🚨 Latest Research:Tanstack npm Packages Compromised in Ongoing Mini Shai-Hulud Supply-Chain Attack.Learn More →
Socket
Book a DemoSign in
Socket

makeup-private-npm-server

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

makeup-private-npm-server

makeup-private-npm-server

latest
npmnpm
Version
0.0.8
Version published
Weekly downloads
21
Maintainers
1
Weekly downloads
 
Created
Source

makeup-private-npm-server

makeup-private-npm-server is a library that installs all dependent packages required by the project on the verdaccio private NPM server.

Install

verdaccio is installed in global location when is this package install.

npm i -g makeup-private-npm-server

verdaccio configuration

What is Verdaccio? / verdaccio configuration

Required configuration

# package storage
storage: ./storage
...

# download server
uplinks:
  npmjs:
    url: https://registry.npmjs.org

# set proxy
packages:
  '@*/*':
	...
    proxy: http://127.0.0.1:4873
  '**':
    ...
    proxy: http://127.0.0.1:4873
...

# server host and port
listen:
	- 127.0.0.1:4873

Use with node.js

const MPNS = require('makeup-private-npm-server');

new MPNS({config: 'path/to/config.yaml', force: false}).start();

Use with CLI

mpns --config /Users/sgjeon/.config/verdaccio/config.yaml

CLI Arguments

usage: mpns [-h] [-v] [-c CONFIG] [-f FORCE]

MPNS CLI

Optional arguments:
  ...
  -c CONFIG, --config CONFIG
                        verdaccio configuration file path
  -f FORCE, --force FORCE
                        Force the installation of the package.

Keywords

private

FAQs

Package last updated on 24 Mar 2018

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