@reatom/debug
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

reatom logo

@reatom/debug

Package of Reatom for generating dynamic names with contain source path

npm npm bundle size

Open in docs

Install

npm i -D @reatom/debug

or

yarn add @reatom/debug --dev

NOTE. @reatom/debug depends on and works with @reatom/core.

Usage

redux-devtools

Basic

import { createStore } from '@reatom/core'
import { connectReduxDevtools } from '@reatom/debug'

const store = createStore()

const unsubscribeDevTools = connectReduxDevtools(store)

With React

import { createStore } from '@reatom/core'
import { context } from '@reatom/react'
import { connectReduxDevtools } from '@reatom/debug'

function App() {
  const store = createStore()

  useEffect(() => connectReduxDevtools(store), [])

  return (
    <context.Provider value={store}>
      <Main />
    </context.Provider>
  )
}

add file path to names of actions and atoms declarations

import { genIdFromLine } from '@reatom/debug'
import { declareAtom, declareAction, setNameToId } from '@reatom/core'

setNameToId(
  genIdFromLine({
    showColumn: false,
  }),
)

// Now genIdFromLine will be used for processing id generation
// for actions and atoms

// Examples:

const action = declareAction('myAction')
// myAction [/src/folder/index.js:4]

const atom = declareAtom('myAtom', 0, () => {})
// myAtom [/src/folder/index.js:5]

Readme

Keywords

Package Sidebar

Install

npm i @reatom/debug

Weekly Downloads

104

Version

1.2.0

License

MIT

Unpacked Size

40.4 kB

Total Files

14

Last publish

Collaborators

  • artalar