Socket
Socket
Sign inDemoInstall

front-broker-connection

Package Overview
Dependencies
3
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    front-broker-connection

Front Finance brokerage connection client lib


Version published
Maintainers
1
Created

Readme

Source

front-broker-connection

JS library for integrating with Front Finance

Install

With npm:

npm install --save front-broker-connection

With yarn

yarn add front-broker-connection

Generating connection method

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 <></>

Getting tokens

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.

Available Connection configuration options

ℹ️ See src/types/index.ts for exported types.

createFrontConnection arguments
keytype
clientIdstring
onBrokerConnected(payload: FrontPayload) => void
onExit((error?: string | undefined) => void) | undefined
createFrontConnection return value
keytype
openLink() => Promise<void>

Typescript support

TypeScript definitions for front-broker-connection are built into the npm package.

FAQs

Last updated on 25 Jan 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc