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-app-tools-telesoho

v1.1.2

Published

Boilerplate and tooling for JavaScript application development with React

Downloads

7

Readme

React App SDK  

CLI tool and templates for authoring React applications with a single dev dependency and zero build/run configuration.

TL;DR

$ npm install -g react-app
$ react-app new
$ react-app run

See demo, docs  |  Join #react-app chat on Gitter to stay up to date  |  Follow us on Twitter  |  Learn React.js and ES6

Features

    ✓ Zero-configuration, no build scripts, just one development dependency (see package.json)     ✓ Modern JavaScript syntax (ES2015+) via Babel or TypeScript (planned), modern CSS syntax via PostCSS     ✓ Component-based UI architecture via React, Webpack and CSS Modules     ✓ Application state management /w time-travel debugging via Redux (see main.js, core/store.js)     ✓ Routing and navigation via path-to-regexp and history (see main.js, core/router.js, utils/routes-loader.js)     ✓ Code-splitting and async chunk loading via Webpack and ES6 System.import()     ✓ Cross-device testing with Browsersync /w Hot Module Replacement (HMR) and React Hot Loader     ✓ 24/7 community support on Gitter and SO; consulting and customization requests on Codementor or Skype

Requirements

  • MAC OS X, Windows, or Linux
  • Node.js v6 or newer

Getting Started

Install react-app npm package globally.

$ npm install -g react-app

Scaffold a new JavaScript application project and launch it by running:

$ react-app new
$ react-app run

The app should become available at http://localhost:3000

For more information visit /templates/app

How to Customize

Coming soon...

Escape Hatch

If you’re a power user and you aren’t happy with the default configuration, you can always fork react-app repository, customize it and use it instead of of the original react-app-tools npm module. For example (package.json):

{
  "private": true,
  "dependencies": {
    "react": "^15.2.1",
    "react-app": "^1.1.1",
    "react-dom": "^15.2.1"
  },
  "devDependencies": {
    "react-app-tools": "git+https://github.com/<username>/react-app.git",
  },
  "scripts": {
    "build": "react-app build",
    "start": "react-app run",
  }
}

Learn React.js and ES6

:mortar_board:   React.js Training Program by Tyler McGinnis :mortar_board:   React for Beginners and ES6 Training Course by Wes Bos :green_book:   React: Up & Running: Building Web Applications by Stoyan Stefanov (Aug, 2016) :green_book:   Getting Started with React by Doel Sengupta and Manu Singhal (Apr, 2016) :green_book:   You Don't Know JS: ES6 & Beyond by Kyle Simpson (Dec, 2015)

Contribute

Help shape the future of React App SDK by joining our community today, check out the open issues, submit new feature ideas and bug reports, send us pull requests!

Support

License

Copyright © 2016-present Kriasoft, LLC. This source code is licensed under the MIT license found in the LICENSE.txt file.


Made with ♥ by Konstantin Tarkus (@koistya) and contributors