@barchart/portfolio-client-js 1.3.19 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jshintrc +2 -1
- package/README.md +14 -14
- package/buildspec.yml +15 -0
- package/example/example.js +1072 -696
- package/gulpfile.js +2 -11
- package/lib/gateway/PortfolioGateway.js +53 -6
- package/lib/index.js +1 -1
- package/package.json +7 -8
- package/jsdoc.json +0 -8
package/.jshintrc
CHANGED
package/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
# @barchart/portfolio-client-js
|
|
2
|
-
## JavaScript library for interfacing with Barchart's Portfolio API
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
[](https://github.com/barchart/portfolio-client-js)
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
A JavaScript SDK for interfacing with the Barchart Portfolio System.
|
|
7
6
|
|
|
8
|
-
|
|
9
|
-
> gulp document
|
|
7
|
+
### Development
|
|
10
8
|
|
|
11
|
-
|
|
9
|
+
#### Documentation
|
|
12
10
|
|
|
13
|
-
|
|
11
|
+
The code is documented with [JSDoc](http://usejsdoc.org/). This will be used as the basis for formal documentation (coming soon).
|
|
14
12
|
|
|
15
|
-
|
|
16
|
-
> npm install
|
|
17
|
-
> gulp lint
|
|
18
|
-
> gulp test
|
|
13
|
+
#### Package Managers
|
|
19
14
|
|
|
20
|
-
|
|
15
|
+
This library has been published as a *private* module to NPM as [@barchart/portfolio-client-js](https://www.npmjs.com/package/@barchart/portfolio-client-js).
|
|
21
16
|
|
|
22
|
-
|
|
17
|
+
```shell
|
|
18
|
+
npm login
|
|
19
|
+
npm install @barchart/portfolio-client-js -S
|
|
20
|
+
```
|
|
23
21
|
|
|
24
|
-
|
|
22
|
+
#### Build
|
|
23
|
+
|
|
24
|
+
Modern JavaScript language features are used. Some browsers may still require polyfills.
|