Socket
Socket
Sign inDemoInstall

dotcms

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dotcms

Client and node library that allows easy interaction with several [DotCMS Rest APIS](https://dotcms.com/docs/latest/rest-api).


Version published
Weekly downloads
200
decreased by-9.5%
Maintainers
1
Weekly downloads
 
Created
Source

DotCMS Javascript Library

Client and node library that allows easy interaction with several DotCMS Rest APIS.

Install

npm install dotcms node-fetch --save

Use

import { initDotCMS } from 'dotcms';

const dotcms = initDotCMS({
    host: 'YOUR_DOTCMS_INSTANCE', // Non required, will be using in the requests if you pass it
    token: 'YOUR AUTH TOKEN',
});

// Example
dotcms.page
    .get({
        url: '/about-us'
    })
    .then((data) => {
        console.log(data);
    })
    .catch(err => {
        console.error(err.status, err.message)
    });

Documentation

Full Documentation

FAQs

Package last updated on 05 Mar 2019

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