stockdb

0.2.2 • Public • Published

npm npm npm

JavaScript client library for StockDB

Example

simple

Instllation

Browser globals

The dist folder contains stockdb.js with the component exported in the window.StockDB object.

<script src="path/to/hprose-html5.js"></script>
<script src="path/to/stockdb.js"></script>
<script>
    var client = StockDB.New("http://localhost:8765", "username:password");
</script> 

NPM

$ npm install --save stockdb

CommonJS

var StockDB = require('stockdb');
var client = StockDB.New("http://localhost:8765", "username:password");

ES6

import StockDB from 'stockdb';
 
const client = StockDB.New('http://localhost:8765', 'username:password');

Reference

Official Repos

Document

Readme

Keywords

Package Sidebar

Install

npm i stockdb

Weekly Downloads

3

Version

0.2.2

License

MIT

Last publish

Collaborators

  • miaolz123