From 1d1db66abd3f63ffa9f72e3e9ee5449d14c99630 Mon Sep 17 00:00:00 2001 From: Max Ogden Date: Wed, 25 Feb 2015 21:56:47 -0800 Subject: [PATCH 1/2] add npm installation instructions to README --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index f413aea561..cbc7b40eca 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,16 @@ editor](https://github.com/atom/atom). Prebuilt binaries of atom-shell for Linux, Windows and Mac can be found on the [releases](https://github.com/atom/atom-shell/releases) page. +You can also use [`npm`](https://docs.npmjs.com/) to install prebuilt atom-shell binaries: + +``` +# install globally in your PATH +npm install atom-shell -g + +# install as a development dependency +npm install atom-shell --save-dev +``` + ### Mirrors - [China Mirror](https://npm.taobao.org/mirrors/atom-shell): Improve download speeds for Chinese user. From d8d0f15ca80ab72478a23c1721325ad1fb0d2683 Mon Sep 17 00:00:00 2001 From: Max Ogden Date: Sun, 1 Mar 2015 11:58:33 -0800 Subject: [PATCH 2/2] fix readme style --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cbc7b40eca..16ea221518 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,10 @@ Prebuilt binaries of atom-shell for Linux, Windows and Mac can be found on the You can also use [`npm`](https://docs.npmjs.com/) to install prebuilt atom-shell binaries: ``` -# install globally in your PATH +# Install globally in your $PATH npm install atom-shell -g -# install as a development dependency +# Install as a development dependency npm install atom-shell --save-dev ```