Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meltymooncakes/samidbapi
An NPM Module for SamiDB's image API
https://github.com/meltymooncakes/samidbapi
Last synced: about 1 month ago
JSON representation
An NPM Module for SamiDB's image API
- Host: GitHub
- URL: https://github.com/meltymooncakes/samidbapi
- Owner: MeltyMooncakes
- License: mit
- Created: 2021-06-27T15:37:23.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-06-27T15:49:12.000Z (over 3 years ago)
- Last Synced: 2024-12-22T05:52:05.657Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SamiDB API
An [NPM](https://npmjs.org) Module for [SamiDB's image API](https://api.samidb.xyz/)# Installation
```sh
npm install samidbapi
#or
yarn add samidbapi
```# Usage
```js
const SamiDBApi = require("samidbapi");const apiClient = new SamiDBApi();
// Gets data from the corn endpoint and logs it to the console.
apiClient.corn.then(console.log);
```