aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/md/docs/deployer/installation.md
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/md/docs/deployer/installation.md')
-rw-r--r--packages/website/md/docs/deployer/installation.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/website/md/docs/deployer/installation.md b/packages/website/md/docs/deployer/installation.md
new file mode 100644
index 000000000..48dd52c1f
--- /dev/null
+++ b/packages/website/md/docs/deployer/installation.md
@@ -0,0 +1,24 @@
+#### CLI Installation
+
+```bash
+npm install @0xproject/deployer -g
+```
+
+#### API Installation
+
+```bash
+npm install @0xproject/deployer --save
+```
+
+**Import**
+
+```typescript
+import { Deployer, Compiler } from '@0xproject/deployer';
+```
+
+or
+
+```javascript
+var Deployer = require('@0xproject/deployer').Deployer;
+var Compiler = require('@0xproject/deployer').Compiler;
+```