@northflank/js-client 0.5.0-beta.0 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/cjs/api-client.d.ts +375 -338
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +375 -338
- package/dist/esm/api-client.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
## Northflank
|
|
2
|
-
Node.js client for the Northflank platform based on the Northflank public
|
|
1
|
+
## Northflank API js-client package
|
|
2
|
+
Node.js client for the Northflank platform based on the Northflank public API.
|
|
3
3
|
|
|
4
4
|
*Visit our website [www.northflank.com](https://www.northflank.com)*
|
|
5
5
|
|
|
@@ -17,8 +17,8 @@ Add as a dependency to your project with
|
|
|
17
17
|
|
|
18
18
|
### Using the package
|
|
19
19
|
Example usage:
|
|
20
|
-
```
|
|
21
|
-
import { ApiClient, ApiClientInMemoryContextProvider} from '@northflank/js-client';
|
|
20
|
+
```javascript
|
|
21
|
+
import { ApiClient, ApiClientInMemoryContextProvider } from '@northflank/js-client';
|
|
22
22
|
|
|
23
23
|
(async () => {
|
|
24
24
|
// Create context to store credentials.
|