0.24.0 • Published 1 year ago

@configu/browser v0.24.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

@configu/browser

Configu SDK for the Browser published to npm.

Install

npm install @configu/browser
yarn add @configu/browser
pnpm add @configu/browser
<script src="https://unpkg.com/@configu/browser/dist/configu.min.js" charset="utf-8"></script>

Usage

import {
  LocalForageConfigStore,
  ConfigSet,
  ConfigSchema,
  UpsertCommand,
  EvalCommand,
  ExportCommand,
} from '@configu/browser';
import schemaContents from './get-started.cfgu.json';

(async () => {
  try {
    const store = new LocalForageConfigStore({ name: 'config-db' });
    const set = new ConfigSet('test');
    const schema = new ConfigSchema('get-started', schemaContents);

    await new UpsertCommand({
      store,
      set,
      schema,
      configs: {
        'GREETING': 'hey',
        'SUBJECT': 'configu browser sdk'
      },
    }).run();

    const data = await new EvalCommand({
      store,
      set,
      schema,
    }).run();

    const configurationData = await new ExportCommand({
      pipe: data,
    }).run();
  } catch (error) {
    console.error(error);
  }
})();

Reference

oss.configu.com/browser

Contributing

Requirements

Follow the Development section from the CONTRIBUTING.md.

Setup

Run these commands in order:

cd ts
npm install

Contribute

Follow the Sending a Pull Request section from the CONTRIBUTING.md.

0.25.0-next.4

1 year ago

0.25.0-next.5

1 year ago

0.23.2

1 year ago

0.24.0

1 year ago

0.23.1

1 year ago

0.23.0

1 year ago

0.24.0-next.1

1 year ago

0.23.0-next.6

1 year ago

0.23.0-next.4

1 year ago

0.23.0-next.5

1 year ago

0.23.0-next.3

1 year ago

0.23.0-next.2

1 year ago

0.23.0-next.1

1 year ago

0.22.0

1 year ago

0.21.1

1 year ago

0.21.0

1 year ago

0.20.2-next.5

1 year ago

0.20.2-next.6

1 year ago

0.20.2-next.4

1 year ago

0.20.2-next.3

1 year ago

0.20.2-next.2

1 year ago

0.20.2-next.1

1 year ago

0.20.1

2 years ago

0.20.0

2 years ago

0.19.0

2 years ago

0.18.1

2 years ago

0.14.0

2 years ago

0.15.0

2 years ago

0.14.1

2 years ago

0.16.0

2 years ago

0.17.0

2 years ago

0.18.0

2 years ago

0.11.0

2 years ago

0.12.0

2 years ago

0.11.1

2 years ago

0.13.0

2 years ago

0.10.3

2 years ago

0.10.4

2 years ago

0.10.0-next.31

2 years ago

0.10.0

2 years ago

0.10.0-next.30

2 years ago

0.10.0-next.28

2 years ago

0.10.0-next.27

2 years ago

0.10.0-next.29

2 years ago

0.8.5

3 years ago

0.8.4

3 years ago

0.8.6

3 years ago

0.9.0

2 years ago

0.8.1

3 years ago

0.8.0

3 years ago

0.8.3

3 years ago

0.9.1

2 years ago

0.8.2

3 years ago

0.7.0

3 years ago

0.6.3

3 years ago

0.6.2

3 years ago

0.6.1

3 years ago

0.6.0

3 years ago