gyaonup
v0.0.0
Published
in node.js ``` import {upload} from "gyaonup"; import {readFileSync} "fs";
Downloads
1
Readme
gyaonup
usage
in node.js
import {upload} from "gyaonup";
import {readFileSync} "fs";
const gyaonId = "hoge";
const soundFile = readFileSync("/path/to/sound/file");
upload(gyaonId, soundFile).then(res => {
// succeeded
}).catch(err => {
// failed
});