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 🙏

© 2025 – Pkg Stats / Ryan Hefner

builder-react-fullstack-dev

v1.0.0

Published

Builder Archetype - React Fullstack (Development)

Downloads

7

Readme

builder-react-fullstack

npm version

React/redux app archetype for builder. It brings a lot of features that help you to make a production ready react/redux app.

It is used by react-seed. Please check this project to understand how to use these builder tasks.

Getting started

You could check builder if you want to understand how it works.

npm install --save-dev builder
npm install --save builder-react-fullstack
npm install --save-dev builder-react-fullstack-dev
# .builderrc
---
archetypes:
  - builder-react-fullstack

Tasks

Build

  • builder run bundle: Bundle the app with webpack. The output is in the ./build folder. You could run this command with these options: (eg. builder run bundle -- --release)
    • --release: Minify the bundle
    • --devtools: inject the global variable __ONBUILD_REDUX_DEVTOOLS__ into the app. (useful to include redux devtools)
    • --react-perf: inject the global variable __ONBUILD_REACT_PERF__ into the app. (useful to include react addons perf)
    • --isomorphic: inject the global variable __ONBUILD_SERVER_RENDERING__ into the app. (useful to enable server rendering)
  • builder run build: Clean the ./build folder, copy assets and bundle the app.

Server playground

  • builder run serve: Serve the app in development mode. Check http://localhost:3000 :smile:

Test

  • builder run test:all: Test the app once
  • builder run test:all:watch: Test the app once and enter in watch mode (usefull for tdd)
  • builder run test:all:coverage: Test the app and generate test coverage

Linters

  • builder run eslint: Run eslint on the project
  • builder run jscs: Run jscs on the project
  • builder run lint: Run the 2 previous tasks

Release

  • builder run release -- semverCompatibleVersion: Only if you are using git flow. Create a release of the app. semverCompatipleVersion must be valid according to semver This will update package.json and create a git flow release

Comming soon

When typescript will reach 2.0.0, I will migrate the bundle process to use typescript instead of babel.

Builder Help

$ builder help builder-react-fullstack
Usage:

  builder <action> <task(s)>

Actions:

  run, concurrent, envs, help

Tasks:

  test:all
    [builder-react-fullstack] NODE_PATH=./src:$NODE_PATH mocha --opts node_modules/builder-react-fullstack/config/mocha/mocha.opts src/**/*-test.js

  test:all:coverage
    [builder-react-fullstack] NODE_PATH=./src:$NODE_PATH babel-node node_modules/.bin/istanbul cover --config node_modules/builder-react-fullstack/config/istanbul/.istanbul.yml _mocha -- --opts node_modules/builder-react-fullstack/config/mocha/mocha.opts.coverage src/**/*-test.js

  test:all:watch
    [builder-react-fullstack] NODE_PATH=./src:$NODE_PATH mocha --opts node_modules/builder-react-fullstack/config/mocha/mocha.opts.watch src/**/*-test.js

  build
    [builder-react-fullstack] node node_modules/builder-react-fullstack/lib/runner build

  bundle
    [builder-react-fullstack] node node_modules/builder-react-fullstack/lib/runner bundle

  eslint
    [builder-react-fullstack] eslint --color src/**/*.js

  jscs
    [builder-react-fullstack] jscs src/**/*.js

  lint
    [builder-react-fullstack] builder concurrent eslint jscs

  prepublish
    [builder-react-fullstack] npm run builder:compile

  release
    [builder-react-fullstack] node node_modules/builder-react-fullstack/lib/runner release

  serve
    [builder-react-fullstack] node node_modules/builder-react-fullstack/lib/runner serve