
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@techiediaries/vue-cli-plugin-native
Advanced tools
This plugin allows you to convert your Vue app to an Android or iOS app using Ionic Capacitor
Head over to a command-line interface and run the following command from your Vue project's folder:
vue add @techiediaries/capacitor
Next, configure Capacitor to hide your app's splash screen when VueJS is ready by adding the following code to your src/app.js
:
import Vue from 'vue'
import App from './App.vue'
+ import { Plugins } from '@capacitor/core'
+ const { SplashScreen } = Plugins
Vue.config.productionTip = false
new Vue({
render: h => h(App),
+ mounted() {
+ SplashScreen.hide()
+ }
}).$mount('#app')
Start the dev server by running:
With Yarn:
yarn capacitor:serve # add --android or --ios to specify a target platform
Or with npm:
npm run capacitor:serve # add --android or --ios to specify a target platform
This will start a dev server, then open your native IDE (Android Studio or XCode). From here, run your app on an emulator or physical device. The app will connect to the dev server, allowing HMR.
Build your app by running:
With Yarn:
yarn capacitor:build # add --android and/or --ios to specify a target platform(s)
Or with npm:
npm run capacitor:build # add --android and/or --ios to specify a target platform(s)
This will bundle your app, then open your native IDE (Android Studio or XCode). From here, build your app with the IDE tooling to create an Android/iOS app.
To learn more about Capacitor and how to use it, visit Capacitor's Website. This plugin simply provides an easy-to-use interface for Vue CLI projects.
vue-cli-service serve
.cap open [platform]
.vue-cli-service build
.cap copy [platform]
. This runs for each platform specified.FAQs
A Vue CLI 4 Plugin for Capacitor
The npm package @techiediaries/vue-cli-plugin-native receives a total of 0 weekly downloads. As such, @techiediaries/vue-cli-plugin-native popularity was classified as not popular.
We found that @techiediaries/vue-cli-plugin-native demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.