Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arikaim/api-client-js
Arikaim CMS Api Client for nodejs
https://github.com/arikaim/api-client-js
Last synced: 6 days ago
JSON representation
Arikaim CMS Api Client for nodejs
- Host: GitHub
- URL: https://github.com/arikaim/api-client-js
- Owner: arikaim
- Created: 2022-01-25T17:04:41.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-21T09:44:28.000Z (11 months ago)
- Last Synced: 2024-05-01T11:43:15.406Z (8 months ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
## Arikaim CMS Api Client for Nodejs
![version: 1.0.0](https://img.shields.io/github/release/arikaim/api-client-js.svg)
![license: MIT](https://img.shields.io/badge/License-MIT-blue.svg)This repo is part of [Arikaim CMS](http://arikaim.com) project.
### Installation
```sh
npm install @arikaim/arikaim-client
```
### Usage
```js
import { ArikaimClient } from '@arikaim/arikaim-client';
var client = new ArikaimClient(apiEndpoint,apiKey);
client.request(method,url,{
// request data key: value
}).then(function (response) {
// response.data;
}).catch(function (error) {
// error
});```