Package Exports
- apify-client
- apify-client/build/utils
- apify-client/package.json
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (apify-client) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Apify Client JS

Apify Client for JavaScript
This package is still a work in progress, stay tuned.
Installation
npm install apify-client --saveUsage
const ApifyClient = require('apify-client');
// Configuration
const apifyClient = new ApifyClient({
userId: 'jklnDMNKLekk',
token: 'SNjkeiuoeD443lpod68dk',
});
// Storages
const store = await apifyClient.keyValueStores.getOrCreateStore({ storeName: 'my-store' });
apifyClient.setOptions({ storeId: store._id });
await apifyClient.keyValueStores.putRecord({
key: 'foo',
body: 'bar',
contentType: 'text/plain',
});
const record = await apifyClient.keyValueStores.getRecord({ key: 'foo' });
const keys = await apifyClient.keyValueStores.getRecordsKeys();
await apifyClient.keyValueStores.deleteRecord({ key: 'foo' });
// Crawler
const crawler = await apifyClient.crawlers.getCrawlerSettings({ crawlerId: 'DNjkhrkjnri' });
const execution = await apifyClient.crawlers.startExecution({ crawlerId: 'DNjkhrkjnri' });
apifyClient.setOptions({ crawlerId: 'DNjkhrkjnri' });
const execution = await apifyClient.crawlers.startExecution();
// Acts
const act = await apifyClient.acts.getAct({ actId: 'kjnjknDDNkl' });
apifyClient.setOptions({ actId: 'kjnjknDDNkl' });
const build = await apifyClient.acts.buildAct();
const run = await apifyClient.acts.runAct();
Global configuration
You can set global parameters when you are creating instance of ApifyClient:
const apifyClient = new ApifyClient({
userId: 'jklnDMNKLekk', // Your Apify user ID
token: 'SNjkeiuoeD443lpod68dk', // Your API token
promise: Promise, // Promises dependency to use (default is native Promise)
expBackOffMillis: 500, // Wait time in milliseconds before making a new request in a case of error
expBackOffMaxRepeats: 8, // Maximum number of repeats in a case of error
});Tp obtain your user ID and API token please visit your Apify Account page.
Promises, await, callbacks
Every method can be used as either promise or with callback. If your Node version supports await/async then you can await promise result.
const options = { crawlerId: 'DNjkhrkjnri' };
// Awaited promise
try {
const crawler = await apifyClient.crawlers.getCrawlerSettings(options);
// Do something crawler ...
} catch (err) {
// Do something with error ...
}
// Promise
apifyClient.crawlers.getCrawlerSettings(options)
.then((crawler) => {
// Do something crawler ...
})
.catch((err) => {
// Do something with error ...
});
// Callback
apifyClient.crawlers.getCrawlerSettings(options, (err, crawler) => {
// Do something with error and crawler ...
});Package maintenance
npm run testto run testsnpm run test-covto generate test coveragenpm run buildto transform ES6/ES7 to ES5 by Babelnpm run cleanto cleanbuild/directorynpm run lintto lint js using ESLint in Airbnb's Javascript stylenpm publishto run Babel, run tests and publish the package to NPM
License
Apache 2.0