New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

waterslide

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

waterslide

Waterslide is easy setting method for JavaScript.

latest
Source
npmnpm
Version
0.9.2
Version published
Maintainers
1
Created
Source

Waterslide

Waterslide is a CLI tool that easily sets up a modern JavaScript project and takes care of troublesome compilation (webpack, babel...).

Install and setup

$ npm install -g waterslide
$ ws config

ws config is default setting configuration tool.

Create project

$ ws new <target> [projectDir]

target is the environment name you want to create like electron, node, browser.

If you omit projectDir specification, created a project directory with random name. Even if you do not consider the name of the project, you can easily create a project and experiment.

In project

$ cd projectDir
$ npm start
  • npm start is run project
  • npm run build is build project
  • npm test is test project

For example

For example, create React-Redux eletcron project with ava, eslint:

$ ws new --use react-redux,ava,eslint electron [projectDir]
$ cd <projectDir>
$ npm start

Build distribution pacakge of the Electron application:

$ npm run build

License

The license of the waterslide itself is Apache-2.0. Software license created using waterslide can be set freely.

Keywords

waterslide

FAQs

Package last updated on 16 Aug 2017

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