https://github.com/qovery/qovery-client-ws-typescript-axios
https://github.com/qovery/qovery-client-ws-typescript-axios
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/qovery/qovery-client-ws-typescript-axios
- Owner: Qovery
- Created: 2023-08-23T13:53:28.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2026-03-09T17:53:28.000Z (4 months ago)
- Last Synced: 2026-03-09T23:14:58.772Z (4 months ago)
- Language: TypeScript
- Size: 338 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## qovery-ws-typescript-axios@0.1.0
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-ws-typescript-axios@0.1.0 --save
```
_unPublished (not recommended):_
```
npm install PATH_TO_GENERATED_PACKAGE --save
```