Ghost/ghost/sdk/layer2
John O'Nolan 0f6809bab5 2019
2019-01-01 14:38:49 +00:00
..
test Created initial layer2 for Members SDK 2018-11-14 08:47:17 +05:30
.eslintrc.js Created initial layer2 for Members SDK 2018-11-14 08:47:17 +05:30
index.js Updated members sdks for third party use (#25) 2018-12-10 15:55:10 +07:00
LICENSE 2019 2019-01-01 14:38:49 +00:00
package.json Updated layer2 to inline with drop in solution 2018-11-14 17:36:26 +05:30
README.md 2019 2019-01-01 14:38:49 +00:00

Members Layer 2

Install

npm install @tryghost/members-layer2 --save

or

yarn add @tryghost/members-layer2

Usage

<script src="members-layer2.lib.js"></script>
<script>
    // Sets up binding the elements to the login/logout state
    Members.init().then(function ({getToken}) {
        // can getToken etc...
    });
</script>

Or with a module loader

const Members = require('@tryghost/members-layer2');

// Sets up binding the elements to the login/logout state
Members.init().then(function ({getToken}) {
    // can get token etc...
});

fetch('/ghost/api/v2/content/posts/<id>', { credentials: 'same-origin' });

Develop

This is a mono repository, managed with lerna.

Follow the instructions for the top-level repo.

  1. git clone this repo & cd into it as usual
  2. Run yarn to install top-level dependencies.

Run

  • yarn dev

Test

  • yarn lint run just eslint
  • yarn test run lint and tests

Copyright & License

Copyright (c) 2018-2019 Ghost Foundation - Released under the MIT license.