Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@ngrx/devtools
Advanced tools
Devtools for @ngrx projects.
To instrument your @ngrx/store and use the devtools, simply call instrumentStore()
after you call provideStore()
then use the Devtools
component:
import {Devtools, instrumentStore} from '@ngrx/devtools';
@Component({
selector: 'app',
providers: [
provideStore(reducer),
instrumentStore()
],
directives: [ Devtools ],
template: `
<ngrx-devtools></ngrx-devtools>
`
})
export class App{ ... }
To customize the default layout for the devtools, import the devtoolsConfig
function, add it to providers with an object with position
(top, bottom, left, right), size
(0.3) and visible
(true).
To set different commands for toggling dock visibility and position, use the toggle-command
(ctrl-h) and position-command
(ctrl-m) inputs on the ngrx-devtools
component:
import {Devtools, instrumentStore, devtoolsConfig} from '@ngrx/devtools';
@Component({
providers: [
instrumentStore(),
devtoolsConfig({
position: 'bottom',
visible: false,
size: 0.3
})
],
directives: [ Devtools ],
template: `
<ngrx-devtools toggle-command="ctrl-k" position-command="ctrl-e"></ngrx-devtools>
`
})
export class App{ ... }
Please read contributing guidelines here.
1.4.0 (2016-05-03)
<a name="1.3.3"></a>
FAQs
Developer tools for @ngrx projects
The npm package @ngrx/devtools receives a total of 5,737 weekly downloads. As such, @ngrx/devtools popularity was classified as popular.
We found that @ngrx/devtools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.