
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
web-frame-lib
Advanced tools
Web Frame lib allows you to easily integrate your bots, dynamic pages and other with button trigger based architecture into you apps.

Install web-frame-lib package from npm
npm i web-frame-lib
Adding to your Project
import { useEffect } from 'react';
import { initWebFrame } from 'web-frame-lib';
const App = () => {
// this will mount it after page render
useEffect(()=>{
initWebFrame({
url: 'https://your-website.com',
})
// other options available below in Readme
},[]);
return(
<>Hello</>
)
}
That's all your chatbot, message service or whatever you ahve done is now availabe in your app with just a click of button.
Edit config object
initWebFrame({
url: 'https://your-website.com',
config: {
activatorText: `Chat With US`, //default
closeText: `Close`, //default
color: `#000`, //default
backgroundColor: `#fff`, //default
wfl_css: wfl_css, //default
css: ``, // add custom css triggering classes inside
},
executeAfterWfl: (config, button) => {
// this will execute within scope of this script so that you can perform additional actions
console.log('executeAfterWfl', config, button)
},
})
| id | description |
|---|---|
| wfl-cta-button | Primary Triggering button |
| wfl-cross | Cross button on mobile ui (ful screen) |
| wfl-frame | iframe container |
config objectPackage Developed by Pushkar Yadav. For Support please contact here
FAQs
Web Frame lib allows you to easily integrate your bots, dynamic pages and other with button trigger based architecture into you apps.
We found that web-frame-lib 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.