Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

buttercms

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buttercms

ButterCMS API Client

  • 1.0.7
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7K
decreased by-4.61%
Maintainers
1
Weekly downloads
 
Created
Source

ButterCMS node.js client

npm version

Documentation

For a comprehensive list of examples, check out the API documentation.

Installation

Requires node.js version 4 or greater.

npm install buttercms

Overview

Every resource is accessed via your butter instance:

var butter = require('buttercms')(' your butter API token ');

Every resource method returns a promise:

butter.post.list({page: 1, page_size: 10})
  .then(function(response) {
    console.log(response)
  }).catch(function(response) {
    console.log(response)
  });


butter.post.retrieve("hello-world")
  .then(function(response) {
    console.log(response)
  }).catch(function(response) {
    console.log(response)
  });

// Try our new custom content feature
butter.content.retrieve(["homepage_html_title", "homepage_meta_description"])
  .then(function(response) {
    console.log(response)
  }).catch(function(response) {
    console.log(response)
  });

See our node app for a full example.

Available resources & methods

Where you see params it is a plain js object, e.g. {page: 1}

  • post
    • retrieve(slug[, params])
    • list([params])
    • search(query[, params])
  • category
    • retrieve(slug[, params])
    • list([params])
  • tag
    • retrieve(slug[, params])
    • list([params])
  • author
    • retrieve(slug[, params])
    • list([params])
  • feed
    • retrieve(type[, params])
  • content
    • retrieve(keys)

Documentation

Documentation is available at https://buttercms.com/docs/api/node

Keywords

FAQs

Package last updated on 08 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc