1.41.3 • Published 5 years ago

mindtouch-martian v1.41.3

Weekly downloads
49
License
Apache-2.0
Repository
github
Last release
5 years ago

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..
});
1.41.3

5 years ago

1.41.2

5 years ago

1.41.0

6 years ago

1.40.10

6 years ago

1.40.9

6 years ago

1.40.8

6 years ago

1.40.5

6 years ago

1.40.3

6 years ago

1.40.2

6 years ago

1.40.1

6 years ago

1.40.0

6 years ago

1.39.1

6 years ago

1.39.0

6 years ago

1.38.0

6 years ago

1.37.0

6 years ago

1.36.2

6 years ago

1.36.1

6 years ago

1.36.0

6 years ago

1.35.1

6 years ago

1.35.0

6 years ago

1.34.1

6 years ago

1.34.0

6 years ago

1.33.0

6 years ago

1.32.0

7 years ago

1.31.0

7 years ago

1.30.0

7 years ago

1.29.0

7 years ago

1.28.0

7 years ago

1.27.2

7 years ago

1.27.1

7 years ago

1.26.1

7 years ago

1.27.0

7 years ago

1.26.0

7 years ago

1.25.2

7 years ago

1.25.1

7 years ago

1.24.4

7 years ago

1.24.2

7 years ago

1.23.0

7 years ago

1.22.2

7 years ago

1.22.1

7 years ago

1.22.0

7 years ago

1.21.0

7 years ago

0.1.0

8 years ago