Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rstacruz committed Jan 28, 2016
1 parent cad8489 commit 6ff492f
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 2 deletions.
7 changes: 7 additions & 0 deletions HISTORY.md
@@ -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 changes: 46 additions & 0 deletions README.md
Expand Up @@ -5,3 +5,49 @@
pnpm is a fast implementation of `npm install`.

![](https://raw.githubusercontent.com/rstacruz/pnpm/gh-pages/screencast.gif)

## 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) &nbsp;&middot;&nbsp;
> GitHub [@rstacruz](https://github.com/rstacruz) &nbsp;&middot;&nbsp;
> Twitter [@rstacruz](https://twitter.com/rstacruz)
[MIT]: http://mit-license.org/
[contributors]: http://github.com/rstacruz/pnpm/contributors
5 changes: 3 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "pnpm",
"version": "1.0.0",
"name": "pnpm.js",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
Expand All @@ -23,6 +23,7 @@
"semver": "5.1.0",
"tar-fs": "1.9.0"
},
"preferGlobal": true,
"bin": {
"pnpm": "bin/pnpm",
"pnpm-install": "bin/pnpm-install"
Expand Down

0 comments on commit 6ff492f

Please sign in to comment.