Skip to content

Commit

Permalink
README update
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrkochan committed Aug 8, 2018
1 parent a429d20 commit c87f8cc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Simple TME API Client written in Typescript.

* https://developers.tme.eu/en/
* https://tme.eu/

## Installation:

```
Expand All @@ -24,6 +27,13 @@ client.request('Products/GetProducts', {SymbolList: ['LEG-12']})
.catch((err: AxiosError) => console.log(err.response.data));
```

Not a TypeScript fan? Just use:

```
const TmeApiClient = require('tme-api-client').TmeApiClient;
const client = new TmeApiClient('...', '...');
```

## License

MIT
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/piotrkochan/tme-api-typescript-client.git"
"url": "git+https://github.com/piotrkochan/tme-api-client.git"
},
"author": "Piotr Kochan",
"license": "MIT",
"bugs": {
"url": "https://github.com/piotrkochan/tme-api-typescript-client/issues"
"url": "https://github.com/piotrkochan/tme-api-client/issues"
},
"homepage": "https://github.com/piotrkochan/tme-api-typescript-client#readme"
"homepage": "https://github.com/piotrkochan/tme-api-client#readme"
}

0 comments on commit c87f8cc

Please sign in to comment.