Projekt

Obecné

Profil

Stáhnout (3.84 KB) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
# global-prefix [![NPM version](https://img.shields.io/npm/v/global-prefix.svg?style=flat)](https://www.npmjs.com/package/global-prefix) [![NPM monthly downloads](https://img.shields.io/npm/dm/global-prefix.svg?style=flat)](https://npmjs.org/package/global-prefix) [![NPM total downloads](https://img.shields.io/npm/dt/global-prefix.svg?style=flat)](https://npmjs.org/package/global-prefix) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/global-prefix.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/global-prefix) [![Windows Build Status](https://img.shields.io/appveyor/ci/jonschlinkert/global-prefix.svg?style=flat&label=AppVeyor)](https://ci.appveyor.com/project/jonschlinkert/global-prefix)
2
3
> Get the npm global path prefix.
4
5
Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
6
7
## Install
8
9
Install with [npm](https://www.npmjs.com/):
10
11
```sh
12
$ npm install --save global-prefix
13
```
14
15
This is partially based on the code used by npm internally to resolve the global prefix.
16
17
## Usage
18
19
```js
20
var prefix = require('global-prefix');
21
//=> '/usr/local' (this path will differ by system and user-defined config)
22
```
23
24
## About
25
26
<details>
27
<summary><strong>Contributing</strong></summary>
28
29
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
30
31
</details>
32
33
<details>
34
<summary><strong>Running Tests</strong></summary>
35
36
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
37
38
```sh
39
$ npm install && npm test
40
```
41
42
</details>
43
44
<details>
45
<summary><strong>Building docs</strong></summary>
46
47
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
48
49
To generate the readme, run the following command:
50
51
```sh
52
$ npm install -g verbose/verb#dev verb-generate-readme && verb
53
```
54
55
</details>
56
57
### Related projects
58
59
You might also be interested in these projects:
60
61
* [global-modules](https://www.npmjs.com/package/global-modules): The directory used by npm for globally installed npm modules. | [homepage](https://github.com/jonschlinkert/global-modules "The directory used by npm for globally installed npm modules.")
62
* [global-paths](https://www.npmjs.com/package/global-paths): Returns an array of unique "global" directories based on the user's platform and environment. The… [more](https://github.com/jonschlinkert/global-paths) | [homepage](https://github.com/jonschlinkert/global-paths "Returns an array of unique "global" directories based on the user's platform and environment. The resulting paths can be used for doing lookups for generators or other globally installed npm packages. Node.js / JavaScript.")
63
64
### Contributors
65
66
| **Commits** | **Contributor** | 
67
| --- | --- |
68
| 23 | [jonschlinkert](https://github.com/jonschlinkert) |
69
| 15 | [doowb](https://github.com/doowb) |
70
| 2 | [phated](https://github.com/phated) |
71
| 1 | [rmbaad](https://github.com/rmbaad) |
72
| 1 | [avengerpenguin](https://github.com/avengerpenguin) |
73
| 1 | [jorrit](https://github.com/jorrit) |
74
| 1 | [mathiasvr](https://github.com/mathiasvr) |
75
| 1 | [tunnckoCore](https://github.com/tunnckoCore) |
76
77
### Author
78
79
**Jon Schlinkert**
80
81
* [GitHub Profile](https://github.com/jonschlinkert)
82
* [Twitter Profile](https://twitter.com/jonschlinkert)
83
* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
84
85
### License
86
87
Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert).
88
Released under the [MIT License](LICENSE).
89
90
***
91
92
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on October 11, 2018._