Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dbartholomae/redux-dynamic-modules-beacon
redux-beacon integration for redux-dynamic-modules.
https://github.com/dbartholomae/redux-dynamic-modules-beacon
Last synced: about 1 month ago
JSON representation
redux-beacon integration for redux-dynamic-modules.
- Host: GitHub
- URL: https://github.com/dbartholomae/redux-dynamic-modules-beacon
- Owner: dbartholomae
- License: mit
- Created: 2019-06-28T21:57:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T22:18:17.000Z (almost 2 years ago)
- Last Synced: 2024-08-11T09:53:23.233Z (5 months ago)
- Language: TypeScript
- Homepage:
- Size: 957 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# redux-dynamic-modules-beacon
[![npm version](https://badge.fury.io/js/redux-dynamic-modules-beacon.svg)](https://npmjs.org/package/redux-dynamic-modules-beacon) [![downloads](https://img.shields.io/npm/dw/redux-dynamic-modules-beacon.svg)](https://npmjs.org/package/redux-dynamic-modules-beacon) [![open issues](https://img.shields.io/github/issues-raw/dbartholomae/redux-dynamic-modules-beacon.svg)](https://github.com/dbartholomae/redux-dynamic-modules-beacon/issues) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fdbartholomae%2Fredux-dynamic-modules-beacon.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fdbartholomae%2Fredux-dynamic-modules-beacon?ref=badge_shield) [![build status](https://img.shields.io/circleci/project/github/dbartholomae/redux-dynamic-modules-beacon/master.svg?style=flat)](https://circleci.com/gh/dbartholomae/workflows/redux-dynamic-modules-beacon/tree/master) [![codecov](https://codecov.io/gh/dbartholomae/redux-dynamic-modules-beacon/branch/master/graph/badge.svg)](https://codecov.io/gh/dbartholomae/redux-dynamic-modules-beacon) [![dependency status](https://david-dm.org/dbartholomae/redux-dynamic-modules-beacon.svg?theme=shields.io)](https://david-dm.org/dbartholomae/redux-dynamic-modules-beacon) [![devDependency status](https://david-dm.org/dbartholomae/redux-dynamic-modules-beacon/dev-status.svg)](https://david-dm.org/dbartholomae/redux-dynamic-modules-beacon?type=dev) [![semantic release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release#badge)[redux-beacon](https://rangle.gitbook.io/redux-beacon/) integration for [redux-dynamic-modules](https://redux-dynamic-modules.js.org/).
## Installation
Download node at [nodejs.org](http://nodejs.org) and install it, if you haven't already.```sh
npm install redux-dynamic-modules-beacon --save
```## Usage
```ts
import { createStore, IModuleStore } from "redux-dynamic-modules";
import GoogleAnalytics from '@redux-beacon/google-analytics';
import { UsersModule } from "./usersModule";const store: IModuleStore = createStore(
{
initialState: {},
extensions: [getBeaconExtension(GoogleAnalytics())],
},
UsersModule
);```