npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-redux-universal-boilerplate

v2.2.0

Published

Get started with a Universal boilerplate containing tools like React, Redux, Koa...

Downloads

17

Readme

React Redux Universal Boilerplate

Introduction

I started this project to learn tools like React, Redux, Webpack, babeljs.io, ES6/ES2015... I did it mainly for fun. But it will be maintained and then I used it as Boilerplate for my React|Redux projects. So don't worry it works :p. It's not perfect but it works :).

Enjoy it! :)

An Universal ReactJS/Redux Boilerplate.

Requirements

Node >=7.6.0

Optional

Installation

$ git clone https://github.com/kiki-le-singe/react-redux-universal-boilerplate.git <name>
$ cd <name>
$ npm install or yarn
$ on postinstall you should choose between SASS or CSSNEXT

Run

  • npm start (dev mod)
  • npm run deploy (prod mod - Runs npm run build:client and npm run build:server scripts)
  • cd readyToDeploy, npm install or yarn then npm start (prod mod)

Some NPM Script Commands

Storybook

$ npm run storybook

Starts Storybook on `http://localhost:6006/``

Development

$ npm run setup

Allows to choose between sass or cssnext and clean up unnecessary files. This question you will be asked: You will use SASS as CSS extension language 😉 . Do you wish to use CSSNEXT 😀 ? This choice is irreversible. Obviously you can install the project again or just use your version control system to discard changes in working directory.

This script runs on postinstall script (see package.json).

$ npm run dev

Serves your app at localip:3000. HMR will be enabled in development. A proxy is used for when you request http://localip:3000/, it will fetch http://localip:3001/ and return.

$ npm start

Runs npm run dev script.

$ npm run start:server

Starts the dev server with nodemon to serve your app at localip:3000.

$ npm run start:client:server

Starts the webpack dev server to serve your webpack bundle at localip:3001 and enable HMR in development.

Production

$ npm run build:client

It does some optimizations and compiles the client app, for the production, to disk (~/readyToDeploy/static/dist).

$ npm run build:server

It does some optimizations and compiles the server app, for the production, to disk (~/readyToDeploy/server.js).

$ npm run deploy

Runs npm run build:client and npm run build:server scripts.

$ cd readyToDeploy
$ npm install or yarn
$ npm start

Starts the prod server to serve your app at localip:3000.

Test

$ npm run test

Runs unit tests with Karma. It will generate a coverage report to ~/coverage.

$ npm run test:dev

Same as npm run test except it watches for changes to re-run tests.

Linter

$ npm run lint

Lint all files in ~/src and ~/__tests__.

Deployment

Runs npm run deploy and everything is in the ~/readyToDeploy folder.

You can read the README.

DEBUG

You should just install an extension Redux DevTools Extension. Personally I use Redux DevTools for Chrome

Are there any other alternatives? Sure! You can also use Redux DevTools. And there is also a small logger middleware redux-logger to log all actions and states after they are dispatched.

Features

Styles

CSSNEXT You can use .css file extensions using the latest CSS syntax with postcss-cssnext.

SASS You can use scss.|css file extensions using the sass syntax with sass.

CSS are automatically autoprefixed. You don't need to add prefixes like -webkit. See:

See the ~/src/common/styles/global directory to implement global styles (site's theme for example) and see an example of use case css module ~/src/common/views/AboutView. There is also a ~/src/common/styles/local directory for common local styles (this could allow to use css modules' composition between components).

Are there any other solutions ? Fortunately yes!

I could try one of these following options if what I implemented doesn't work very well...

  • It's possible to use css-modules for Theming
  • Obviously you can use the traditional method (it works very well) to do your own css or sass:
.foo-namespace {
  .baz {
    ...
  }
  .bar {
    ...
  }
}
<div className="foo-namespace">
  <div className="baz">baz</div>
  <div className="bar">bar</div>
</div>

Globals

These are global variables available to you anywhere in your source code. They can be found in ~/config/index.js.

new webpack.DefinePlugin({
  __CLIENT__: projectConfig.__CLIENT__,
  __SERVER__: projectConfig.__SERVER__,
  __DEV__: projectConfig.__DEV__,
  __PROD__: projectConfig.__PROD__,
})

Webpack is made for client side code development only. So we also have to define them on the server side

/**
 * Define isomorphic constants.
 */

// src/server/index.js

global.__CLIENT__ = false
global.__SERVER__ = true
global.__DEV__ = projectConfig.__DEV__
global.__PROD__ = projectConfig.__PROD__

Unit Tests

Tests are in ~/__tests__. Mocha will be used for structuring tests, karma as the test runner, Chai for assertions, Sinon.JS for spies... And Enzyme to simplify testing react components.

Tips

  • For the backend, if you want to ignore some modules, you can use the IgnorePlugin
new webpack.IgnorePlugin(/\.(css|less|scss|jpg|png|...)$/)

Message received from Webpack via terminal: WARNING in asset size limit: The following asset(s) exceed the recommended size limit (250 kB)

Sources

Learn more