
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
@cogsworthdev/embed-sdk-js
Advanced tools
A client side SDK for integrating Cogsworth's Embed Widget
The Cogsworth Embed App SDK allows Cogsworth partners to embed the Cogsworth Embed application in their own sites with minimal configuration.
npm install @cogsworthdev/embed-sdk-js
# or
yarn add @cogsworthdev/embed-sdk-js
One you have set up your secure payload endpoint in your backend, the client SDK can consume it and render the Cogsworth embed application in your site.
In addition to the payload endpoint, you'll need to provide a query selector for the element you wish to render the application in, and your partner ID.
const client = new CogsworthClient({
partnerId: 'xxxxxxxxx',
payloadEndpoint: {
url: `http://partner.com/api/cogsworth-payload?userId=${userId}&clinicId=${clinicId}`,
// Headers can be used to authenticate the request to the payload endpoint
headers: {},
}
containerSelector: '#cogsworth-widget',
})
Once instantiated, you can call the init()
method to render the Cogsworth embed application.
client.init()
import CogsworthClient from '@cogsworth4/embed-sdk-js'
const App = () => {
useEffect(() => {
// 1. Instantiate the Cogsworth Client by indicating your partner ID, the payload endpoint url and optional headers.
const client = new CogsworthClient({
partnerId: 'xxxxxxxxx',
payloadEndpoint: {
url: `http://partner.com/api/cogsworth-payload?userId=${userId}&clinicId=${clinicId}`,
headers: {},
},
containerSelector: '#cogsworth-widget',
})
// 2. Initialize the cogsworth embed application
client.init()
}, [])
return <div id='cogsworth-widget' />
}
FAQs
A client side SDK for integrating Cogsworth's Embed Widget
The npm package @cogsworthdev/embed-sdk-js receives a total of 1 weekly downloads. As such, @cogsworthdev/embed-sdk-js popularity was classified as not popular.
We found that @cogsworthdev/embed-sdk-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.