mturk-promise
v1.0.1
Published
Use the AWS SDK for Mechanical Turk with promises
Downloads
5
Readme
mturk-promise
Wraps the mturk API in promises.
import createClient from 'mturk-promise'
const client = createClient({
isProduction: false,
accessKeyId: '12132324',
secretAccessKey: '121212'
})
const response = await client('createHIT', {
title: 'My Task'
...etc
})