mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-26 19:49:26 +01:00
22 lines
637 B
Markdown
22 lines
637 B
Markdown
# Installation
|
|
|
|
**Clone the Repository**: Begin by cloning the repository. You can achieve this by executing the following command in your terminal:
|
|
|
|
```bash
|
|
$ git clone https://github.com/oceanprotocol/ocean.js-cli.git
|
|
```
|
|
|
|
Cloning the repository will create a local copy on your machine, allowing you to access and work with its contents.
|
|
|
|
**Install NPM Dependencies**: After successfully cloning the repository, you should install the necessary npm dependencies to ensure that the project functions correctly. This can be done with the following command:
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
Build the TypeScript code
|
|
|
|
```bash
|
|
npm run build
|
|
```
|