Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
prestashop_accounts_vue_components
Advanced tools
To work as a Community Service or as PrestaShop X, a module needs three parts:
yarn install
yarn storybook
Storybook integration (triggered on PR labeled 'quality assurance needed')
Storybook production (triggered on push master/main)
To load a hosted library, copy and paste the HTML snippet for that library (shown below) in your web page.
To load a hosted library, copy and paste the HTML snippet for that library (shown below) in your web page.
# To load version 4.0.0
<script src="https://unpkg.com/prestashop_accounts_vue_components@4.0.0"></script>
# To load latest patched version 4.0
<script src="https://unpkg.com/prestashop_accounts_vue_components@4.0"></script>
# To load latest version
<script src="https://unpkg.com/prestashop_accounts_vue_components"></script>
To use the prestashop_accounts_vue_components, you need a prestashop-accounts html tag, when it's in the page you can then call the init function of psaccountsVue
<prestashop-accounts></prestashop-accounts>
<script>
window.psaccountsVue.init();
</script>
If you need to use the vue cdn for your app, please create your app with the vue esm-browser as follow
<div id="app"></div>
<script src="https://unpkg.com/prestashop_accounts_vue_components@4.0.0"></script>
<script type="module">
import { createApp } from 'https://unpkg.com/vue@3.2.26/dist/vue.esm-browser.js';
const App = {
data() {
return {
name: "John",
};
},
template: `<div>
<h1>Hello {{ name }}</h1>
<prestashop-accounts></prestashop-accounts>
</div>`,
mounted() {
window.psaccountsVue.init();
}
};
createApp(App).mount("#app");
</script>
FAQs
## Usage
The npm package prestashop_accounts_vue_components receives a total of 580 weekly downloads. As such, prestashop_accounts_vue_components popularity was classified as not popular.
We found that prestashop_accounts_vue_components 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.