Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@appcominteractive/cordova-plugin-hot-reload

Package Overview
Dependencies
Maintainers
5
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appcominteractive/cordova-plugin-hot-reload

Cordova Hot-Reload Plugin

  • 0.2.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
77
decreased by-18.95%
Maintainers
5
Weekly downloads
 
Created
Source

cordova-plugin-hot-reload

This plugin enables you to develop cordova apps with hot-reloading in your app in your development environment. It creates two hooks that modify your config.xml and point the content to the local development server when you serve the app and point to the index.html file when you build your app.

Installation

cordova plugin add @appcominteractive/cordova-plugin-hot-reload

Cordova files

The files are served via symlinks from your public folder and pointing to the correct platform files. Remember to keep your symlinks out of git and add them to your .gitignore file.

preparation

npm i concurrently wait-on cross-env

To serve your frontend files you could start your app like so

"serve:android": "cross-env PORT=8080 concurrently \"npm run serve\" \"wait-on http://localhost:8080 && cordova run android\""

you have to set the PORT environment, so the plugin can point to the correct port.

Variables

You can add variables to the plugin by adding the following to your config.xml in the widget tag:

<plugin name="@appcominteractive/cordova-plugin-hot-reload">
  <variable name="publicPath" value="www"/>
</plugin>

Now all symlinks get set to your folder named www. The path must be relative to your config.xml

Keywords

FAQs

Package last updated on 18 Feb 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc