Javascript API Client for Jamify Cloud
npm install @jamify/js-clientThis package is designed to work with the Jamify Cloud API which is not yet published.
Follow us on Twitter for exciting upcoming announcements!
1. Install the client
``shell`
yarn add @jamify/js-client
2. Use the client in your js/ts projects
`javascript
import { jamify } from '@jamify/js-client'
const jamifyAPI = new jamify('
// make an API call
const siteId = 'your-site-id'
const imagePath = './astronaut.png'
const uploadedImage = await jamifyAPI.upload(siteId, imagePath)
console.log(uploadedImage)
``
Go to your Jamify Cloud Access tab and create a new token.
Copyright (c) 2020 styxlab - Released under the MIT license.