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.
@techiediaries/vue-cli-plugin-capacitor
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
We found that @techiediaries/vue-cli-plugin-capacitor 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.
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.