mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-31 16:07:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| # Redux DevTools Extension's helper
 | ||
| 
 | ||
| [](https://gitter.im/zalmoxisus/redux-devtools-extension?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
 | ||
| 
 | ||
| ## Usage
 | ||
| 
 | ||
| Install:
 | ||
| 
 | ||
| ```
 | ||
| npm install --save redux-devtools-extension
 | ||
| ```
 | ||
| 
 | ||
| and use like that:
 | ||
| 
 | ||
| ```js
 | ||
| import { createStore, applyMiddleware } from 'redux';
 | ||
| import { composeWithDevTools } from 'redux-devtools-extension';
 | ||
| 
 | ||
| const store = createStore(
 | ||
|   reducer,
 | ||
|   composeWithDevTools(
 | ||
|     applyMiddleware(...middleware)
 | ||
|     // other store enhancers if any
 | ||
|   )
 | ||
| );
 | ||
| ```
 | ||
| 
 | ||
| or if needed to apply [extension’s options](https://github.com/zalmoxisus/redux-devtools-extension/blob/master/docs/API/Arguments.md#windowdevtoolsextensionconfig):
 | ||
| 
 | ||
| ```js
 | ||
| import { createStore, applyMiddleware } from 'redux';
 | ||
| import { composeWithDevTools } from 'redux-devtools-extension';
 | ||
| 
 | ||
| const composeEnhancers = composeWithDevTools({
 | ||
|   // Specify here name, actionsDenylist, actionsCreators and other options
 | ||
| });
 | ||
| const store = createStore(
 | ||
|   reducer,
 | ||
|   composeEnhancers(
 | ||
|     applyMiddleware(...middleware)
 | ||
|     // other store enhancers if any
 | ||
|   )
 | ||
| );
 | ||
| ```
 | ||
| 
 | ||
| There’re just [few lines of code](https://github.com/zalmoxisus/redux-devtools-extension/blob/master/npm-package/index.js). If you don’t want to allow the extension in production, just use ‘redux-devtools-extension/developmentOnly’ instead of ‘redux-devtools-extension’.
 | ||
| 
 | ||
| ## License
 | ||
| 
 | ||
| MIT
 |