npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@monokle/synchronizer

v0.14.2

Published

Monokle Cloud synchronizer

Downloads

700

Readme

Monokle Synchronizer

Monokle Synchronizer is a TypeScript library to provide integration with Monokle Cloud in local environments.

This package exposes two main utils - Authenticator and Synchronizer which can be used for authenticating with Monokle Cloud and then synchronizing remote policies to local environment.

Authenticator

Authenticator provides a way to authenticate locally with Monokle Cloud. It can be done via device flow or by providing access token. In both scenarios as a result, API token is obtained and stored locally so can be used for further Monokle Cloud API communication (for synchronizing policies).

Login flow

Login is a two step process, where authenticator.login(...) call initializes login flow and return an object with onDone promise which gets resolve when user is successfully logged in.

Login via device flow - this is a 2-step process where user needs to navigate ot given URL using a browser to authenticate:

import {createDefaultMonokleAuthenticator} from '@monokle/synchronizer';

const authenticator = createDefaultMonokleAuthenticator();

const loginResponse = await authenticator.login('device code');

console.log(loginResponse.handle);
// The `loginResponse.handle` is an object containing an URL which needs to be shown to users so they can authenticate with it in a browser.
// handle.device_code: string;
// handle.verification_uri_complete: string;

const user = await loginResponse.onDone;
// Returns
// user.isAuthenticated
// user.email
// user.token

Login via access token - this is 1-step process where user should be prompted first for a token and then this token should be passed to login method:

import {createDefaultMonokleAuthenticator} from '@monokle/synchronizer';

const authenticator = createDefaultMonokleAuthenticator();

const loginResponse = await authenticator.login('token', 'sample user token');
const user = await loginResponse.onDone;
// Returns
// user.isAuthenticated
// user.email
// user.token

On successful login, authenticator instance emits login event with object including user data and login method used:

{
  method: 'token'
  user: {...}
}

IMPORTANT: Keep in mind that User instance is immutable. To make sure you always have up to date user data, always use authenticator.user instead of passing around sole User object.

Logout

import {createDefaultMonokleAuthenticator} from '@monokle/synchronizer';

const authenticator = createDefaultMonokleAuthenticator();

await authenticator.logout();

This emits logout event.

Token refresh

When using device flow, user token gets expired with time and needs to be refreshed. The recommended way is to always use authenticator.getUser() method which returns User but also takes care of refreshing token internally.

import {createDefaultMonokleAuthenticator} from '@monokle/synchronizer';

const authenticator = createDefaultMonokleAuthenticator();

const user = await authenticator.getUser();

Since getUser() is async, there might be scenarios where it cannot be used to obtain user data. Then authenticator.user getter should be used. In such scenarios, token refreshing needs to be taken of separately by calling authenticator.refreshToken(). Since this method will only refresh user token when it is close to being expired it doesn't have any additional surrounding logic and can be called every time before policies synchronization logic.

Synchronizer

Synchronizer is an util to synchronize and get content of remote polices. The simplest way is to use synchronizer.getPolicy() method. The git repository for which to get policies can be passed both as path to local folder or specifying required git data.

import {createDefaultMonokleSynchronizer} from '@monokle/synchronizer';

const synchronizer = createDefaultMonokleSynchronizer();

// By path
const policy = await authenticator.getPolicy('/home/kubeshope/...');

// By repo data
const policy = await authenticator.getPolicy({
  provider: 'github.com',
  remote: 'origin',
  owner: 'kubeshop',
  name: 'monokle-core',
});

console.log(policy);
// {
//   valid: boolean; // if policy is valid
//   path: string; // full path to local .yaml policy file
//   policy: StoragePolicyFormat; // entire policy content as JSON file
// }

Depending on the use case you may use policy JSON directly or pass path to any other tool (like @monokle/validator) which can read the file.

The above will only return valid policy if it was synchronized before. Synchronization can be done separately or as a part of getPolicy() call:

import {createDefaultMonokleSynchronizer} from '@monokle/synchronizer';

const synchronizer = createDefaultMonokleSynchronizer();

// Force policy synchronization by passing `forceRefetch=true` and user access token:
const policy = await authenticator.getPolicy('/home/kubeshope/...', true, authenticator.user.token);

// Or do separate calls like:
await authenticator.synchronize('/home/kubeshope/...', authenticator.user.token);

const policy = await authenticator.getPolicy('/home/kubeshope/...');

Every time policy is synchronized (both via synchronize() call or getPolicy() with forceRefetch=true call), synchronize event will be emitted with policy object.

Error handling

Most of the Authenticator and Synchronizer top level methods will just throw errors when something unexpected happens, so it's a good idea to have some error handling in place.