You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+36-20Lines changed: 36 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,23 @@
2
2
3
3
## MX Platform Node
4
4
5
-
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
5
+
A Node.js library for the [MX Platform API](https://www.mx.com/products/platform-api).
6
+
7
+
### Documentation
8
+
9
+
See the [documentation](https://docs.mx.com/api).
10
+
11
+
### Install
12
+
13
+
To build and compile the typescript sources to javascript use:
14
+
15
+
```shell
16
+
$ npm install mx-platform-node
17
+
```
18
+
19
+
### Getting Started
20
+
21
+
The [openapi-generator](https://github.com/OpenAPITools/openapi-generator) creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
6
22
7
23
Environment
8
24
* Node.js
@@ -17,31 +33,31 @@ Module system
17
33
* CommonJS
18
34
* ES6 module system
19
35
20
-
It can be used in both TypeScript and JavaScript. In TypeScript, the definition should be automatically resolved via `package.json`. ([Reference](http://www.typescriptlang.org/docs/handbook/typings-for-npm-packages.html))
21
-
22
-
### Building
23
-
24
-
To build and compile the typescript sources to javascript use:
25
-
```
26
-
npm install
27
-
npm run build
28
-
```
36
+
In order to make requests, you will need to [sign up](https://dashboard.mx.com/sign_up) for the MX Platform API and get a `Client ID` and `API Key`.
0 commit comments