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

generator-react-hapi-universal

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

generator-react-hapi-universal

Scaffold a Universal JavaScript app using React, hapijs, and react-router

latest
Source
npmnpm
Version
0.0.0
Version published
Maintainers
1
Created
Source

generator-react-hapi-universal

Scaffold a Universal JavaScript app using React, hapijs, and react-router

Install

$ npm install -g generator-react-hapi-universal

Usage

With yo:

$ yo react-hapi-universal

Generator Features

Universal JavaScript Sample App

This project utilizes hapijs and react-router to serve a universal javascript application. The app consists of the following very simple routes which render both on the server and client. You might also have heard this technique referred to as "Isomorphic JavaScript".

"/" UsersIndex

Shows a list of two "users" loaded from a hardcoded set of data from ./lib/app/users.js.

"/:id" UserProfile

Shows the profile of the user with the given id param.

To run the app:

  • npm start
  • visit localhost:8000

Webpack Dev Server with Hot Module Loading

Hot module loading allows you to live edit your app and see the changes reflected in the browser in near real time. You should use this mode while you're developing your app to maximize your speed of iteration.

To run the webpack dev server:

Webpack Production Build

After you've made your changes, you can run a production build to update your bundle.js client side app.

gulp build Builds a production distribute at lib/public/js/dist/bundle.js.

Linting and Code Style with Gulp + JSCS + ESLint

Defaults to using the "airbnb" ESLint and JSCS presets for ES6 and React linting, but you can set it to whatever you would like. For more information about the airbnb javascript lint settings see airbnb javascript.

gulp lint to lint your code once.
gulp lint-dev to set up a file watcher to lint on every file save. gulp jscs to run the jscs code style checks.

Tip

Use chalk if you want colors in your CLI.

Keywords

React

FAQs

Package last updated on 04 Oct 2015

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