0.17.2 • Published 6 years ago

thezivkovic-react-scripts v0.17.2

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

react-scripts

This provides configuration for FLM's isomorphic React apps.

Install

tl;dr

npm install -g create-react-app

create-react-app --scripts-version=git+ssh://git@github.com/firstlookmedia/react-scripts.git my-app
cd my-app
npm start

Usage

react-scripts expects at least the following files:

src/index.js  # entry to the client-side app
server.js     # entry to the server

The output will become:

build/server.js             # compiled server
build/manifest.json         # manifest pointing source files to compiled
build/assets/32f2q8fj3.js   # example compiled app
build/assets/2d0823jd.css   # any other compiled assets (css, images, fonts)

npm start

Starts the development environment:

npm build

Builds the production assets to the build folder.

npm test

You will need watchman to use npm test without CI=true. To install on OSX brew bundle in this directory.

Runs mocha tests. react-scripts will look for any file named __spec.js.

react-scripts adds chai assertion helpers for enzyme and sinon

Example test:

import React from 'react';
import { mount } from 'enzyme';
import { expect } from 'chai';

import Wrapper from '.';

describe('Wrapper', () => {
  it('renders supplied children', () => {
    const wrapper = mount(
      <Wrapper>
        <div>child</div>
      </Wrapper>
    );
    expect(wrapper).to.contain(<div>child</div>);
  });
});