Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
shopar-plugin
Advanced tools
Plugin for the Web that seamlessly integrates into your webpage to create embedded virtual try-on and 3D preview capabilities.
Plugin for the Web that seamlessly integrates into your webpage to create embedded virtual try-on and 3D preview capabilities.
Powered and developed by DeepAR.
Create an account in the ShopAR Dashboard.
Add some models to your account. Make sure the models' plugin SKUs match the product IDs on your website.
There are two distinct ways of integrating the plugin: via Script tag and via NPM.
Add the following script to your HTML.
<script src="https://cdn.jsdelivr.net/npm/shopar-plugin@{{VERSION}}/dist/shopar-plugin.js"></script>
It is possible to use a different CDN instead of jsDelivr (e.g. cdnjs, unpkg), or even a relative path if the plugin is distributed as a static asset to your app. Just make sure to set the baseUrl
parameter accordingly (see setup options for more details).
Add shopar-plugin
to your project:
npm install shopar-plugin
# or
yarn add shopar-plugin
Paste the following snippet in your HTML.
<script>
ShopAR.plugin.setup({
apiKey: 'API_KEY',
sku: 'PRODUCT_ID',
targetElement: 'TARGET_ELEMENT',
});
</script>
API_KEY
with your API key. You can find it in the ShopAR Dashboard.PRODUCT_ID
with the ID of the product. Make sure it matches the plugin SKU of the model in the ShopAR Dashboard.TARGET_ELEMENT
with the HTML element you wish to embed the plugin's UI into.To change the look-and-feel of the plugin's UI, modify the following CSS classes:
.shopar-btn-container {
/* Container for the control buttons. */
}
.shopar-btn {
/* Control button. */
}
Alternatively, use your own UI:
const shopAR = await ShopAR.plugin.setup({
// ...
defaultUI: false,
});
myARButton.onclick = shopAR.launchAR;
my3DButton.onclick = shopAR.launch3D;
myCloseARButton.onclick = shopAR.closeAR;
myClose3DButton.onclick = shopAR.close3D;
// or just:
myCloseButton.onclick = shopAR.close;
If you wish to change the SKU or target element at runtime, simply call setup()
with different parameters.
This method fetches the specified product from the ShopAR Dashboard and renders the plugin's UI.
Options used for the plugin setup:
apiKey
string
sku
string
targetElement
HTMLElement
static
or relative
.initialState
(optional)
'AR' | '3D'
defaultUI
(optional)
boolean
false
, disables the default UI such as buttons, loading and error views.true
baseUrl
(optional)
string
https://cdn.jsdelivr.net/npm/shopar-plugin@{{VERSION}}/dist
Please see: https://developer.deepar.ai/customer-agreement
FAQs
Plugin for the Web that seamlessly integrates into your webpage to create embedded virtual try-on and 3D preview capabilities.
The npm package shopar-plugin receives a total of 31 weekly downloads. As such, shopar-plugin popularity was classified as not popular.
We found that shopar-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.