https://github.com/qovery/qovery-client-typescript-axios
https://github.com/qovery/qovery-client-typescript-axios
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/qovery/qovery-client-typescript-axios
- Owner: Qovery
- Created: 2022-03-02T14:32:17.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-06-25T07:55:06.000Z (about 1 year ago)
- Last Synced: 2025-06-26T06:16:24.074Z (about 1 year ago)
- Language: TypeScript
- Size: 3.53 MB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## qovery-typescript-axios@1.0.4
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:
Environment
* Node.js
* Webpack
* Browserify
Language level
* ES5 - you must have a Promises/A+ library installed
* ES6
Module system
* CommonJS
* ES6 module system
It can be used in both TypeScript and JavaScript. In TypeScript, the definition will be automatically resolved via `package.json`. ([Reference](https://www.typescriptlang.org/docs/handbook/declaration-files/consumption.html))
### Building
To build and compile the typescript sources to javascript use:
```
npm install
npm run build
```
### Publishing
First build the package then run `npm publish`
### Consuming
navigate to the folder of your consuming project and run one of the following commands.
_published:_
```
npm install qovery-typescript-axios@1.0.4 --save
```
_unPublished (not recommended):_
```
npm install PATH_TO_GENERATED_PACKAGE --save
```