Giter Site home page Giter Site logo

catkin's Introduction

CatKin

React/Redux + Webpack 3 template with server-side-rendering and code-splitting thanks to Universal Component and Redux First Router. Cred goes to James Gillmore for providing these awesome libraries. This template also has support for static site generation á la Next.js.


Table of contents

What does it contain?

Installing

When installing the project dependencies it's recommended to first install Yarn.

Run the installer:

$ yarn install
$ cp .env.example .env

Developing

The development environment utilizes Webpack Dev Middleware, Webpack Hot Middleware and Webpack Hot Server Middleware to simulate a build and handle updates. No build/ folder will be generated during development as everything is served from memory.

Start the development environment:

$ yarn develop

Developing components in Storybook

Storybook is a great environment for building React components in isolation. This gives you room to build and test your components before working on the application structure and layout. Your storybook will also work great as a component library with awesome documentation. To add a new story in your storybook just add stories.js in your component folder. Check source/components/Button/stories.js for reference.

Start writing components:

$ yarn storybook

Testing

This project contains tests with Jest and Ensyme. Check files source/views/HomePage/__tests__/*.test.js as reference for testing reducers, actions, sagas, selectors and components.

Run the test suite:

$ yarn test

Run the test suite and get a coverage report:

$ yarn test:cover

Building

Before building your application you needto decide if you want to run a Node.js server or serving static html files and assets (on Amazon for example). The application will work equally well in both cases, but when serving a static site you need to have a strategy for re-building the assets when your data sources change. That can be solved by exposing a webhook url that runs the static site builder when called.

Build for server-side rendering:

$ yarn build:server

Build static html files and assets:

$ yarn build:static

Serving

Run application with server-side rendering:

$ yarn serve

Simulate static served site:

$ yarn serve:static

This will work in production, but it's recommended to put the build folder on a CDN (like Amazon)

Analyzing with Lighhouse

Measure the performance of your application with Google Lighthouse. This take a few seconds and will open up a new page in the browser with a complete report of your metrics like Speed, Accessibility, Best Practices etc...

Run the analyzer:

$ yarn analyze http://localhost:3000

All npm scripts

  • start - alias for serve
  • serve - serve the built application in production mode
  • serve:static - serve the html files and assets as a static site
  • develop - start the application in development mode
  • storybook - start storybook for development
  • build - build the client & server assets
  • build:client - build the client assets only
  • build:server - build the server assets only
  • build:static - build the static html files and assets
  • build:storybook - build the storybook
  • test - run tests with jest
  • test:cover - run tests with jest and give a coverage report
  • analyze - measure performance with Google lighthouse

Project structure

  • config/
  • ---- storybook/
  • ---- ---- addons.js - Storybook addons, check the Storybook addon gallery for more
  • ---- ---- config.js - config for loading Storybook stories
  • ---- ---- webpack.config.js - extending Storybook Webpack config with requirements from the app
  • ---- env.js - stores process.env vars and default values
  • ---- icons.js - settings for generating favicons for all browsers
  • ---- loaders.js - add/remove/modify Webpack loaders used in all Webpack configs
  • ---- paths.js - path settings for building and fetching files
  • ---- postcss.js - add/remove/modify postcss plugins, uses Import, Nested and CSSNext for now
  • ---- variables.js - css variables and custom media queries to be served in the css files
  • ---- webpack.base.js - base Webpack config that is extended by the following configs
  • ---- webpack.client.js - Webpack config for browser assets
  • ---- webpack.server.js - Webpack config for the node server
  • ---- webpack.static.js - Webpack config for generating a static site
  • entries/
  • ---- client.js - Webpack entry for the client script, renders the React application in the browser
  • ---- server.js - Webpack entry for the server script, builds a script used for server-side rendering and static site generation
  • server/
  • ---- development.js - Express middlewares used in development, stuff like the hot middleware for client and server scripts
  • ---- production.js - Express setup for the live enviroment, uses the transpiled server script for server-side rendering
  • source/
  • ---- assets/
  • ---- ---- favicon.png - this image will be used to generate all the favicons
  • ---- ---- styles.css - holds the global css, only use basic selectors here
  • ---- components/ - stateless components
  • ---- ---- [ComponentName]/
  • ---- ---- ---- index.js - the stateless component
  • ---- ---- ---- stories.js - Storybook stories for the component
  • ---- ---- ---- styles.css - local css imported and used within the stateless component
  • ---- layouts/ - stateless components that render props.children within itself
  • ---- ---- [LayoutName]/
  • ---- ---- ---- index.js - the stateless component
  • ---- ---- ---- stories.js - Storybook stories for the component
  • ---- ---- ---- styles.css - local css imported and used within the stateless component
  • ---- state/
  • ---- ---- middleware.js - apply Redux middleware here
  • ---- ---- persist.js - local storage utilites
  • ---- ---- reducers.js - functions for injecting and removing reducers, also setup global reducers
  • ---- ---- routes.js - route management for Redux First Router and component/reducer/saga dynamic imports for Universal Component
  • ---- ---- sagas.js - functions for injecting, running and cancel sagas
  • ---- ---- store.js - creates the Redux store combining middlewares, reducers and sagas
  • ---- utilities/
  • ---- ---- debug.js - function for debug logging, uses Debug
  • ---- ---- propTypes.js - prop-types shape configurations for common use
  • ---- views/ - stateless components that render props.children within itself
  • ---- ---- [ViewName]/
  • ---- ---- ---- actions.js - Redux actions
  • ---- ---- ---- index.js - the "connected" stateless component
  • ---- ---- ---- reducer.js - reducing component props instead of setState, can be injected on route load, check source/state/routes.js
  • ---- ---- ---- sagas.js - sagas to handle component events and their side effects, can be injected on route load, check source/state/routes.js
  • ---- ---- ---- selectors.js - Reselect selectors for props population
  • ---- ---- ---- styles.css - local css imported and used within the component
  • .babelrc
  • .editorconfig
  • .env - your local env vars, should not be tracked
  • .env.example - default env vars, to be cloned to .env before development
  • .eslint - extends airbnb preset with the major changes, 4 space indent and no semicolons
  • .gitignore
  • index.js - the main Express server
  • package.json
  • yarn.lock

catkin's People

Contributors

antoniozzo avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.