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

wappsto-cli

Package Overview
Dependencies
Maintainers
1
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wappsto-cli

Command Line Interface for Wappsto

  • 1.1.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
22
decreased by-18.52%
Maintainers
1
Weekly downloads
 
Created
Source

wappsto-cli

Build Status Depfu Coverage Status

Command Line Interface for Wappsto, so that it is possible to create Wapps locally.

Table of Contents

  1. Install
  2. Usage
  3. Configuration
  4. Frameworks
  5. Related
  6. License

Install

Just install the package using npm.

npm install wappsto-cli --save-dev

Usage

Create

To create a Wapp run the create-wapp using npx:

npx create-wapp

It will ask for your 'username' and 'password' to Wappsto, unless you already logged in. Here you get the option to download any exsisting Wapps or create a new Wapp.

This will generate a file called manifest.json where you can modify the description of your wapp.

Update

To update the Wapp run the update-wapp using npx:

npx update-wapp

This will upload all your files to Wappsto and download any new files created for your Wapp.

Run

To start a web server that will serve the Wapp run the serve-wapp using npx:

npx serve-wapp

This will run a local web server where you can test your wapp. It is default listen on port 3000. Any notifications from your Wapp is presented in the terminal where you are running serve-wapp.

Delete

To delete the Wapp run the delete-wapp using npx:

npx delete-wapp

This will delete your Wapp locally and/or remotely.

Reinstall

To trigger a reinstall of the application run:

npx update-wapp --reinstall

Configuration

You can configure wappsto-cli by creating a 'wappsto.json' file and add this:

{
 "foreground": "foreground",
 "background": "background",
 "port": "3000"
}

Valid options is:

OptionDefaultDescription
foregroundforegroundThe folder where the foreground files will be stored.
backgroundbackgroundThe folder where the background files will be stored.
port3000The port the web server will serve the Wapp on.

Frameworks

Here is some examples on how to configure frameworks to work with wappsto-cli.

React

If you are using React framework, you can configure the React development server, by creating a file src/proxySetup.js with this:

const proxy = require('http-proxy-middleware');
const Wapp = require('wappsto-cli');

const wapp = new Wapp();

const HOST = wapp.host;
let sessionID = '';

const run = async () => {
    await wapp.init();
    sessionID = await wapp.getInstallationSession();
};
run();

module.exports = function(app) {
    app.use('/services', proxy({
            target: HOST,
            changeOrigin: true,
            ws: true,
            logLevel: 'error',
    }));

    // set a cookie
    app.use((req, res, next) => {
        res.cookie('sessionID', sessionID, { maxAge: 900000 });
        next();
    });
};

And insert "homepage": "./", into your package.json file.

To use the build version of React, change the foreground configuration to build and then run npm run build to build the react application. Then run npx serve-wapp to serve the build version of your react application.

License

Apache 2.0 © Seluxit A/S

Keywords

FAQs

Package last updated on 08 Apr 2019

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