Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "node-ncbi", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Access and parse the NCBI eUtils API in Node or the Browser", | ||
"keywords": [ | ||
"pubmed", | ||
"ncbi", | ||
"biology", | ||
"medicine", | ||
"research" | ||
], | ||
"main": "index.js", | ||
"license": "MIT", | ||
"author": { | ||
@@ -12,2 +18,6 @@ "name": "Casey Ydenberg", | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/CAYdenberg/node-ncbi.git" | ||
}, | ||
"dependencies": { | ||
@@ -14,0 +24,0 @@ "popsicle": "^0.5.12", |
@@ -7,3 +7,3 @@ #node-ncbi# | ||
##Getting started## | ||
## Getting started | ||
@@ -14,5 +14,5 @@ `npm install --save node-ncbi` | ||
##Basic usage## | ||
## Basic usage | ||
``` | ||
```js | ||
ncbi.pubmedSearch('actin').then(function(results) { | ||
@@ -25,3 +25,3 @@ console.log(results); | ||
``` | ||
```js | ||
ncbi.getAbstract(6365930, true).then(function(result) { | ||
@@ -33,9 +33,9 @@ console.log(result); | ||
##Advanced usage## | ||
## Advanced usage | ||
node-ncbi consists of three components: a gateway, a parser, and a few functions that wrap around them to create simple interfaces. | ||
###Gateway### | ||
### Gateway | ||
``` | ||
```js | ||
var gateway = require('node-ncbi/createGateway')({ | ||
@@ -69,3 +69,3 @@ method: 'esearch', | ||
``` | ||
```js | ||
var doc = require('node-ncbi/createNcbiDataDocument')(data); | ||
@@ -86,3 +86,3 @@ ``` | ||
###License### | ||
### License | ||
@@ -89,0 +89,0 @@ Copyright (c) 2015 Casey A. Ydenberg |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
62484
1