Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
app-banner
Advanced tools
Easy to use, free, open-source configurable application banner for your website.
When a customer visits your site, Desktop users are sent an SMS with a link to download your app. Mobile users are automatically directed to the appropriate app store.
After a user has seen the app install banner, it won’t reappear. This ensures that the UX of your site is not degraded in any way.
Just include this snippet in your website main page.
<script>
(function () {
var appleId = 'id1234567890';
var googleId = 'com.yourcompany.yourapp';
var placement = 'bottom-left';
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.id = 'TheAppBanner';
s.src = 'https://bruce.presencekit.com/p/main.js?&p=' + placement + '&apple=' + appleId + '&google=' + googleId;
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
})();
</script>
Alternatively you can use the App Banner via npm package
npm install --save app-banner
var appBanner = require('app-banner');
// - or -
import appBanner from 'app-banner';
appBanner.init({
apple: 'id1234567890',
google: 'com.youcompany.yourapp',
placement: 'bottom-left',
})
Also you can use the App Banner as a React component
npm install --save app-banner
import AppBanner from 'app-banner/src';
...
<div>
<AppBanner google="com.youcompany.yourapp" apple="id1234567890" position="bottom-left" />
</div>
apple
or a
- App Store ID of your applicationgoogle
or g
- Google Play ID of your applicationplacement
or p
- Banner position on screen. Possible values are 'top-left'
, 'top-right'
, 'bottom-left'
or 'bottom-right'
. Default value is 'bottom-right'
. Only applies to desktop version of banner.minimize
or m
- Banner behaviour when user dismisses the banner. When minimized, the banner will display smaller version of itself instead of completly dissapear. Possible values are 'yes'
, 'no'
and 'mobile'
. When 'mobile'
is specified, the banner will be minimized if shown on mobile device and completely dissapear on desktop. Default value is 'yes'
.noTrack
or n
- Do not track usage statistics. false
by default.text[CC]
or t[CC]
- Alternate text to display on the desktop banner. CC
is two-letter language code like text[en]
or text[ru]
.Note: shorthand parameters like a
, g
or p
are only supported in script URL when App Banner is used via external script.
FAQs
A simple mobile application banner for you website
We found that app-banner demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.