vtown
v1.0.2
Published
JavaScript SDK for the val.town API
Downloads
3
Readme
val.town JavaScript SDK
Getting Started
npm install vtown
Calling your vals:
import val from 'vtown';
const res = await val.run('@joey.helloWorld', { a: 'some arg' });
Or:
const val = require('vtown');
val.run('@joey.helloWorld', { a: 'some arg' }).then((res) => {
console.log('res', res);
});