mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-23 23:29:17 -05:00
Release v0.1.0
This commit is contained in:
7
HISTORY.md
Normal file
7
HISTORY.md
Normal file
@@ -0,0 +1,7 @@
|
||||
## [v0.1.0]
|
||||
> Jan 28, 2016
|
||||
|
||||
- Initial preview release.
|
||||
|
||||
[v0.1.0]: https://github.com/rstacruz/pnpm/blob/v0.1.0
|
||||
|
||||
46
README.md
46
README.md
@@ -5,3 +5,49 @@
|
||||
pnpm is a fast implementation of `npm install`.
|
||||
|
||||

|
||||
|
||||
## Install
|
||||
|
||||
Install it via npm.
|
||||
|
||||
```
|
||||
npm install -g pnpm.js
|
||||
```
|
||||
|
||||
Use `pnpm` in place of `npm`. It overrides `pnpm i` and `pnpm install`—all other commands will passthru to `npm`.
|
||||
|
||||
```
|
||||
pnpm install lodash
|
||||
```
|
||||
|
||||
## Preview
|
||||
|
||||
`pnpm` will stay in `<1.0.0` until it's achieved feature parity with `npm install`.
|
||||
|
||||
- [ ] pnpm install
|
||||
- [x] npm packages
|
||||
- [ ] GitHub packages
|
||||
- [ ] @scoped modules
|
||||
- [ ] tarball packages
|
||||
- [ ] file packages
|
||||
- [ ] bin executables
|
||||
- [ ] `--global` installs
|
||||
- [ ] `--save` et al
|
||||
- [ ] pnpm uninstall
|
||||
- [ ] pnpm ls
|
||||
|
||||
## Acknowledgements
|
||||
|
||||
[ied](https://www.npmjs.com/package/ied) is built on a very similar premise.
|
||||
|
||||
## Thanks
|
||||
|
||||
**pnpm** © 2016+, Rico Sta. Cruz. Released under the [MIT] License.<br>
|
||||
Authored and maintained by Rico Sta. Cruz with help from contributors ([list][contributors]).
|
||||
|
||||
> [ricostacruz.com](http://ricostacruz.com) ·
|
||||
> GitHub [@rstacruz](https://github.com/rstacruz) ·
|
||||
> Twitter [@rstacruz](https://twitter.com/rstacruz)
|
||||
|
||||
[MIT]: http://mit-license.org/
|
||||
[contributors]: http://github.com/rstacruz/pnpm/contributors
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "pnpm",
|
||||
"version": "1.0.0",
|
||||
"name": "pnpm.js",
|
||||
"version": "0.1.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
@@ -23,6 +23,7 @@
|
||||
"semver": "5.1.0",
|
||||
"tar-fs": "1.9.0"
|
||||
},
|
||||
"preferGlobal": true,
|
||||
"bin": {
|
||||
"pnpm": "bin/pnpm",
|
||||
"pnpm-install": "bin/pnpm-install"
|
||||
|
||||
Reference in New Issue
Block a user