0.0.10 • Published 6 months ago

nari v0.0.10

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

nari

npm version

A lockfile-less JavaScript package manager with reproducible installs.

Goals:

  • Developer productivity with existing JavaScript ecosystem and tooling
  • The best performance achievable with Node.js
  • Good explanation of package manager behavior - why the dependency is placed here or there during installation, what factors contributed to this decision and what to do to make the dependency singular for the project
  • Fine-grained control of package manager behavior for various types of workflows
  • Experimental features that have good compatibility with current JavaScript ecosystem

Implemented experimental features:

  • Reproducible installs without lockfiles. lockTime field is used instead in the package.json file to fixate the time of install. On subsequent installs the highest dependency versions are picked that were published before lockTime. When new dependencies added to the project that were published after lockTime their ranges are resolved to the minimal satisfying version (typically the ranges of newly added dependencies are the latest at the moment when they are added to the package.json).

Usage:

  1. Install nari globally first:

    npm i -g nari
  2. Run installation within your Node.js project directory:

    nari
  3. Run script foo from package.json:

    nari foo
  4. Add/remove packages to your project:

    nari add lodash
  5. Get command line help:

    nari -h
0.0.10

6 months ago

0.0.9

6 months ago

0.0.8

11 months ago

0.0.7

11 months ago

0.0.6

11 months ago

0.0.5

11 months ago

0.0.4

11 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago