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

mindtouch-martian

Package Overview
Dependencies
Maintainers
4
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mindtouch-martian

Core JavaScript API for MindTouch

  • 1.41.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
4
Created
Source

Martian

Core JavaScript API for MindTouch

travis-ci.org codecov.io

Support

This Library is provided for and supported by the open source community. Supported MindTouch site owners may file bug reports via GitHub, but support plans do not cover the usage of this library.

Usage

Martian provides a collection of JavaScript modules that can query a MindTouch site API. These modules can get or create business entities (user, page, file, etc). Martian can be installed in a Node.js environment, by using yarn.

yarn add mindtouch-martian

Martian modules can be loaded natively in a Node.js application, any ES2015 module-aware transpiling or bundling tools, or natively in web browsers that support ES2015 modules. Configuration is needed to resolve module specifiers. As of 2017, browsers only support specifiers that are valid URLs. You can use a tool like rollup-plugin-alias-module-specifiers to resolve the dependencies.

import { UserManager } from '/mindtouch-martian/user.js';
import { Settings } from '/mindtouch-martian/lib/settings.js';
const settings = new Settings({

    // mindtouch site base URL
    host: 'https://success.mindtouch.com',

    // browser API token (https://success.mindtouch.com/Support/Extend/API_Documentation/About_the_MindTouch_API/Generate_a_browser_API_token)
    token: '12345'
});
const userManager = new UserManager(settings);
userManager.getCurrentUser().then((user) => {
    // do something with user.username, user.fullname, user.email, etc..
});

FAQs

Package last updated on 12 Feb 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