
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
front-broker-connection
Advanced tools
JS library for integrating with Front Finance
With npm
:
npm install --save front-broker-connection
With yarn
yarn add front-broker-connection
import { createFrontConnection } from 'front-broker-connection';
// ...
const frontConnection = createFrontConnection({
clientId: '<Your Front Finance Client Id>',
onBrokerConnected: (brokerData: FrontPayload) => {
// use broker account data
},
onExit: (error?: string) => {
if (error) {
// handle error
} else {
// ...
}
}
To open authentication link rpovided by Front Finance Integration API you need to call openLink
method:
frontConnection.openLink(authLink)
ℹ️ See full source code example at react-example/src/ui/Front.tsx
import { createFrontConnection } from 'front-broker-connection'
import {
FrontConnection,
FrontPayload
} from 'front-broker-connection/dist/utils/types'
// ...
const [frontConnection, setFrontConnection] = useState<FrontConnection | null>(
null
)
useEffect(() => {
setFrontConnection(createFrontConnection(options))
}, [])
useEffect(() => {
if (authLink) {
frontConnection?.openLink(authLink)
}
}, [frontConnection, authLink])
return <></>
After successfull authentication on Front Finance user will be redirected back to provided callback URL.
FrontConnection
instance will check if URL contains query parameters, load broker tokens and fire the events.
ℹ️ See src/types/index.ts for exported types.
createFrontConnection
argumentskey | type |
---|---|
clientId | string |
onBrokerConnected | (payload: FrontPayload) => void |
onExit | ((error?: string | undefined) => void) | undefined |
createFrontConnection
return valuekey | type |
---|---|
openLink | () => Promise<void> |
TypeScript definitions for front-broker-connection
are built into the npm package.
FAQs
Front Finance brokerage connection client lib
We found that front-broker-connection 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.