Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@deconet/react-plaid-link
Advanced tools
A simple React component for easy integration with the Plaid Link drop-in module
npm install react-plaid-link --save
import React, { Component } from 'react'
import PlaidLink from 'react-plaid-link'
class App extends Component {
handleOnSuccess(token, metadata) {
// send token to client server
}
handleOnExit() {
// handle the case when your user exits Link
}
render() {
return (
<PlaidLink
clientName="Your app name"
env="sandbox"
product={["auth", "transactions"]}
publicKey="PLAID_PUBLIC_KEY"
onExit={this.handleOnExit}
onSuccess={this.handleOnSuccess}>
Open Link and connect your bank!
</PlaidLink>
)
}
}
export default App
Please refer to the official Plaid Link docs for a more holistic understanding of the various Link options.
<PlaidLink
clientName="Your app name"
env="sandbox"
institution={null}
publicKey={PLAID_PUBLIC_KEY}
product={['auth', 'transactions']}
apiVersion={'v1' || 'v2'}
token={'public-token-123...'}
selectAccount={true} // deprecated – use https://dashboard.plaid.com/link
webhook="https://webhooks.test.com"
onEvent={this.handleOnEvent}
onExit={this.handleOnExit}
onLoad={this.handleOnLoad}
onSuccess={this.handleOnSuccess}>
Open Link and connect a bank account to Plaid
</PlaidLink>
Run tests:
make test
# install dependencies
make setup
# run a local server
make start
# open localhost:3000
FAQs
A React component for Plaid Link
The npm package @deconet/react-plaid-link receives a total of 0 weekly downloads. As such, @deconet/react-plaid-link popularity was classified as not popular.
We found that @deconet/react-plaid-link 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.