Fabio Berger 9699ee4eff Merge branch 'development' into addPackagePublishConfig
* development: (94 commits)
  Update CHANGELOG
  Add solc 0.4.20 and 0.4.21
  Prettier sra-report README
  Add new packages to top level README
  Updated @0xproject/utils in top level package.json
  Publish
  Updated CHANGELOGs
  Detail tests in the README
  Add support for ropsten and rinkeby
  Fix yarn.lock
  Update list of packages and organize them alphabetically
  Fix prettier issues
  Add support for going back to previous hashes via the browser back button to wiki
  Scroll to previous hashed elements when user clicks back button
  Add back strict null checks to react-shared package and fix issues
  remove ability to have implicit dependencies and add missing deps
  update license
  remove no-implicit-this
  Add example & screenshot to npmignore
  Remove `;` to be nice to windows users
  ...
2018-03-09 08:39:38 +01:00
..
2018-03-03 21:43:11 +01:00
2018-03-03 16:50:17 +01:00
2018-03-08 10:14:51 -08:00
2018-01-12 22:16:45 +01:00

0x.js

Installation

0x.js ships as both a UMD module and a CommonJS package.

Install

npm install 0x.js --save

Import

import { ZeroEx } from '0x.js';

If your project is in TypeScript, add the following to your tsconfig.json:

"include": [
    "./node_modules/web3-typescript-typings/index.d.ts",
    "./node_modules/ethers-typescript-typings/index.d.ts"
]

UMD:

Install

Download the UMD module from our releases page and add it to your project.

Import

<script type="text/javascript" src="0x.js"></script>

Documentation

Extensive documentation of 0x.js can be found on our website.