npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-acquia-sf-client

v0.0.9

Published

Simple node client for Acquia Site Factory API

Downloads

15

Readme

WORK IN PROGRESS

Please check the supported endpoints.

PRs are welcome to enrich the list of supported endpoints.

Example

const acsf = require('node-acquia-sf-client')

const sfClient = new acsf.Client({
  subscription: 'mycustomername',
  env: 'dev',
  username: 'my.username',
  token: 'mysecrettokenfromaccountsettingsapikey'  
})

const sites = await sfClient.api.sites.list({ limit: 10, page: 2 })

const site = await sfClient.api.sites.get(111)

const sites = await sfClient.helper.listAll()

Usage

Client variables:

  • subscription
  • env (empty, prod and live can be used for production environment)
  • username
  • token
  • limit (number of items per page - default: 100)
  • batch_size (maximum number of concurrent API calls - default: 5)
  • max_pages (maximum number of pages which will be fetched - default: 100)

Supported API endpoints

The documentation of each endpoint is accessible at htts://www.<subscription>.acsitefactory.com/api/v1

Sites

  • client.api.sites.get GET api/v1/sites/${site_id}
  • client.api.sites.list GET api/v1/sites
  • client.api.sites.create POST api/v1/sites
  • client.api.sites.delete DELETE api/v1/sites/${site_id}
  • client.api.sites.duplicate POST api/v1/sites/${site_id}/duplicate
  • client.api.sites.cacheClear POST api/v1/sites/${site_id}/cache-clear

Backups

  • client.api.backups.list GET api/v1/sites/${site_id}/backups
  • client.api.backups.get GET api/v1/sites/${site_id}/backups/${backup_id}/url
  • client.api.backups.create POST api/v1/sites/${site_id}/backup
  • client.api.backups.delete DELETE api/v1/sites/${site_id}/backups/${backup_id}
  • client.api.backups.restore POST api/v1/sites/${site_id}/restore

Domains

  • client.api.domains.get GET api/v1/domains/${node_id}
  • client.api.domains.status GET api/v1/domains/status/${domain_name}
  • client.api.domains.add POST api/v1/domains/${site_id}/add
  • client.api.domains.remove POST api/v1/domains/${site_id}/remove

Tasks

  • client.api.tasks.list GET api/v1/tasks
  • client.api.tasks.get GET api/v1/tasks/${task_id}/logs
  • client.api.tasks.delete DELETE api/v1/tasks/${task_id}
  • client.api.tasks.terminate PUT api/v1/tasks/${task_id}
  • client.api.tasks.status GET api/v1/wip/tasks/${task_id}/status
  • client.api.tasks.pause POST api/v1/pause/${task_id}
  • client.api.tasks.pauseAll POST api/v1/pause/${task_id}

Helpers

Few helper methods have been implemented. Be cautious in using these helpers, there is no limit in the number of API calls they may issue.

Sites

  • client.helper.sites.listAll

Tasks

  • client.helper.tasks.getAllTasksSince(attributeName, value, condition) ex: getAllTasksUntilAttr(id, 1231, '>=') to get all tasks which the id is greater than 1231.
  • client.helper.tasks.getChildTasks(task_id)
  • client.helper.tasks.getTask(task_id)
  • client.helper.tasks.getParentTasks(task_id)

Limitation

Because of some API limitation, some helper functions around tasks may not work for old tasks. Some helper functions are looping over pages to find requested tasks. The max_pages client argument is to limit the number of fetched pages to avoid infinite loop. The limit client argument determine the number of items per page to fetch. A limit to 100 and a reasonable max_pages value should cover most of the cases. For example, max_pages to 10 and limit to 100 would fetch about 1000 items (tasks or sites).