JCMais / js-webflow-api

Node.js SDK for the Webflow CMS API

Home Page:https://www.npmjs.com/package/webflow-api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Webflow CMS API Client

Requirements

  • Node.js 4+
  • NPM / YARN
  • Webpack / Browserify (optional)

Installation

Install the package via NPM or YARN:

$ npm install --save webflow-api

$ yarn add webflow-api

Usage

const Webflow = require('webflow-api');

// Initialize the API
const api = new Webflow({ token: 'api-token' });

// Fetch a site
api.site({ siteId: '580e63e98c9a982ac9b8b741' }).then(site => console.log(site));

The Webflow constructor takes several options to initialize the API client:

  • token - the API token (required)
  • version - the version of the API you wish to use (optional)

All of the API methods are documented in the API documentation.

Contributing

Contributions are welcome - feel free to open an issue or pull request.

License

The MIT license - see LICENSE.

About

Node.js SDK for the Webflow CMS API

https://www.npmjs.com/package/webflow-api

License:Other


Languages

Language:JavaScript 100.0%