-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can I use it for Angular application? #19
Labels
Comments
Of cause you can, as long as you integrate And sorry for delay of response. |
can you please provide sample for it? In my organization we can't install
chrome extension "redux-devtools". So using your vscode extension want to
debug an application.
…On Wed, Jun 26, 2019 at 10:11 PM JK ***@***.***> wrote:
Of cause you can, as long as you integrate remote-redux-devtools in your
redux store.
And sorry for delay of response.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#19?email_source=notifications&email_token=ACNTKY6BLKQKRYBOHTZAAM3P4OL25A5CNFSM4HZUQKZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODYUD3WQ#issuecomment-505953754>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ACNTKY3XUUOX5ZPHHOTCRYDP4OL25ANCNFSM4HZUQKZQ>
.
--
Thanks and Regards,
Himanshu Rana
|
@himanshu-a-rana See here https://github.com/jkzing/vscode-redux-devtools#quick-start
import { createStore, applyMiddleware } from 'redux'
import { composeWithDevTools } from 'remote-redux-devtools'
const composeEnhancers = composeWithDevTools({
realtime: true,
name: 'Your Instance Name',
hostname: 'localhost',
port: 1024 // the port your remotedev server is running at
})
const store = createStore(
yourReducer,
composeEnhancers(
applyMiddleware(/* put your middlewares here */)
)
) |
Thanks a lot. Will check and get back to you with results.
…On Fri, Jun 28, 2019, 2:42 PM JK ***@***.***> wrote:
@himanshu-a-rana <https://github.com/himanshu-a-rana> See here
https://github.com/jkzing/vscode-redux-devtools#quick-start
- Optional, if you don't have an remotedev server running, you need to
start one. (Find documentation here
<https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-cli>
or see our example <http:///example/simple-redux>)
- Additionally, you also need to compose remote redux devtool
middleware into your redux store:
import { createStore, applyMiddleware } from 'redux'import { composeWithDevTools } from 'remote-redux-devtools'
const composeEnhancers = composeWithDevTools({
realtime: true,
name: 'Your Instance Name',
hostname: 'localhost',
port: 1024 // the port your remotedev server is running at
})
const store = createStore(
yourReducer,
composeEnhancers(
applyMiddleware(/* put your middlewares here */)
)
)
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#19?email_source=notifications&email_token=ACNTKY6KOJLVQEVJ4LMM42DP4XIWNA5CNFSM4HZUQKZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODYZRKKQ#issuecomment-506664234>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ACNTKY4PR4OZZYX43WBZQELP4XIWNANCNFSM4HZUQKZQ>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: