2016-06-09 23:46:28 +02:00
|
|
|
# projectinfo
|
2016-11-27 00:09:04 +01:00
|
|
|
gather information about projects. supports npm, git etc.
|
2016-06-09 23:46:28 +02:00
|
|
|
|
2016-11-27 00:09:04 +01:00
|
|
|
## Availabililty
|
|
|
|
[](https://www.npmjs.com/package/projectinfo)
|
|
|
|
[](https://GitLab.com/pushrocks/projectinfo)
|
|
|
|
[](https://github.com/pushrocks/projectinfo)
|
|
|
|
[](https://pushrocks.gitlab.io/projectinfo/)
|
|
|
|
|
|
|
|
## Status for master
|
|
|
|
[](https://GitLab.com/pushrocks/projectinfo/commits/master)
|
|
|
|
[](https://GitLab.com/pushrocks/projectinfo/commits/master)
|
|
|
|
[](https://www.npmjs.com/package/projectinfo)
|
2016-06-09 23:46:28 +02:00
|
|
|
[](https://david-dm.org/pushrocks/projectinfo)
|
2016-11-27 00:09:04 +01:00
|
|
|
[](https://www.bithound.io/github/pushrocks/projectinfo/master/dependencies/npm)
|
|
|
|
[](https://www.bithound.io/github/pushrocks/projectinfo)
|
|
|
|
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
|
|
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
|
|
[](http://standardjs.com/)
|
2016-06-09 23:46:28 +02:00
|
|
|
|
|
|
|
## Usage
|
2016-11-27 00:09:04 +01:00
|
|
|
Use TypeScript for best in class instellisense.
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
import { ProjectInfo } from 'projectinfo'
|
|
|
|
|
|
|
|
let myProjectInfo = new ProjectInfo('/some/path/to/proejct')
|
|
|
|
let npmName = myProjectInfo.npm.name // returns npm name from package.json
|
|
|
|
let npmVersion = myProjectInfo.npm.version // returns version from package.json
|
|
|
|
let gitRepo = myProjectInfo.git.gitrepo // returns the name of the gitrepo
|
|
|
|
let gitRemotes = myProjectInfo.git.remotes // returns array with registered remotes
|
2016-06-09 23:46:28 +02:00
|
|
|
|
2016-11-27 00:09:04 +01:00
|
|
|
// for more info check out the module in your IDE with TypeScript intellisense enabled
|
|
|
|
```
|
2016-06-09 23:46:28 +02:00
|
|
|
|
2016-11-27 00:09:04 +01:00
|
|
|
[](https://push.rocks)
|