Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
angular-react-demo
Advanced tools
Access your Angular application from within React.
npm install angular-react react prop-types react-dom
A typical React component receiving props
import 'ngReact'
import angular from 'angular'
import {registerReactComponent} from 'react-angular'
const app = angular.module('your-project.react', ['react'])
function ExampleReactComponent (props) {
return (
<div>
The value is: {props.value}
</div>
)
}
registerReactComponent(app, 'exampleReactComponent', ExampleReactComponent)
<example-react-component value="'Hello World'"></example-react-component>
import 'ngReact'
import angular from 'angular'
import {
registerReactComponent,
reactify
} from 'react-angular'
const app = angular.module('your-project.react', ['react'])
app.component('exampleAngularComponent', {template: 'Angular inside React'})
const ExampleAngularComponent = reactify('exampleAngularComponent')
function ExampleReactComponent () {
return (
<div>
React rending Angular
<ExampleAngularComponent />
</div>
)
}
registerReactComponent(app, 'exampleReactNestingAngular', ExampleReactComponent)
<example-react-nesting-angular>
A React component that depends on Angular services.
Assume a Counter
service exists and the React component requires it
import {
registerReactComponent,
compose,
$inject,
$resolve
} from 'react-angular';
const app = angular.module('your-project.react', ['react'])
// Define the component dependencies (resolves, services, etc)
const connect = compose(
// Inject angular services,
$inject('Counter'),
// Define data resolvers
$resolve({
// Resolve the current count and observe changes.
count: $resolve.watch(['Counter', Counter => Counter.getCount()]),
// Resolve the count upon component mount without watching changes
originalCount: ['Counter', Counter => Counter.getCount()]
})
)
// Your React component
function ReactConter ({Counter, count, originalCount}) {
return (
<div>
<p>Count direction from CounterService: {Counter.getCount()}</p>
<p>Count from resolve: {count}</p>
<p>Original count (without watchers) from resolve: {originalCount}</p>
<button onClick={() => Counter.increment()}>+</button>
<button onClick={() => Counter.decrement()}>-</button>
</div>
)
}
// Register the component to be available in Angular
registerReactComponent(app, 'reactCounter', connect(ReactCounter))
<react-counter></react-counter>
FAQs
Access your Angular application from within React.
The npm package angular-react-demo receives a total of 1 weekly downloads. As such, angular-react-demo popularity was classified as not popular.
We found that angular-react-demo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.