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

slush-fullstack-framework

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

slush-fullstack-framework

Slush generator of full stack development framework

latest
Source
npmnpm
Version
0.9.1
Version published
Maintainers
1
Created
Source

Slush Fullstack Framework Generator

This slush generator is helping developers to quickly start hackathon project using loopback.io, redux and react framework. So it saves time to install individual framework during hackathon kick-start.

Quick Start

Step 1 - Install Slush and this generator in your desktop

$ npm install -g slush
$ npm install -g slush-fullstack-framework

Step 2 - Create your backend project based on loopback.io

$ mkdir sample-project
$ cd sample-project
$ slush fullstack-framework
$ npm install

Step 3 - Create your own git repository for your backend project

$ cd sample-project
$ git init
$ git add .
$ git commit

Step 4 - Create your front-end app based on Redux and React

$ mkdir sample-app
$ cd sample-app
$ slush fullstack-framework:redux-react
$ npm install
$ npm run webpack

Step 5 - Create your own git repository for your front-end app

$ cd sample-project
$ git init
$ git add .
$ git commit

Step 6 - Import your front-end app git repo as submodule 'client' in your backend project git repo

$ cd sample-project
$ git submodule add <frontend-app git url> client
$ git add .
$ git commit

Optional Grommet app skeleton

If you want to use Redux with Grommet UI in your front-end app, you can replace Step 4 with the following steps:

$ mkdir sample-app
$ cd sample-app
$ slush fullstack-framework:redux-grommet
$ npm install
$ npm run webpack

Keywords

slushgenerator

FAQs

Package last updated on 14 Oct 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