Coder Social home page Coder Social logo

ptzagk / reactspeedcoding Goto Github PK

View Code? Open in Web Editor NEW

This project forked from manavsehgal/reactspeedcoding

0.0 0.0 0.0 4.59 MB

Learn JavaScript ES6 React with 20 reusable components, 25+ style modules, 14 ebook chapters.

Home Page: https://leanpub.com/reactspeedcoding

JavaScript 68.94% HTML 4.60% CSS 26.46%

reactspeedcoding's Introduction

React Speed Coding Book and Companion Code

Companion code and manuscript of React Speed Coding book is available here.

Download and read ebook, PDF, mobile formats. Support this project.

React Speed Coding Book

ReactSpeed.com companion website

  • Component demos.
  • Access ReactSpeed API for component design workflow.
  • Discuss the book.
  • Suggest new features for ReactSpeed UI library.

Reuse code from book

  • Launch quickly with fully functional ES6 React + Webpack starter.
  • Add 20+ custom React components to your app.

Clone the repo like so.

git clone --depth=1 https://github.com/manavsehgal/reactspeedcoding.git

The --depth=1 flag ensures that only the latest commit is cloned.

- reactspeedcoding
-- manuscript # chapter content
-- code # sample code

Now cd to the code directory and install dependencies using npm install command. Run sample app using npm start command.

License information

Code is MIT license. Book manuscript text and images are Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported (CC BY-NC-ND 3.0) license.

Copyright (c) 2016 Manav Sehgal.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Code: React Webpack Starter Project.

  • How to install Node.js and use Node Version Manager.
  • Setup package.json to manage your NPM dependencies.
  • Quick access companion code for this book using Github.
  • Install starter dependencies for React, Webpack, and Babel.
  • Create Webpack configuration for development pipeline automation.
  • Write and run your first Hello World React app.
  • How to organize your React app in folders and files.
  • How to define a React component using ES6 syntax.
  • What are modules and how to import and export React components.
  • Why we need constructors.
  • How components talk to each other and the UI using events, props, and state.
  • Importance of stateless components.
  • Using React Chrome Extension to inspect your component hierarchy at runtime.

Code: Production Optimized Webpack Config.

  • Optimize React code for production bundle.
  • Separate CSS for static or CDN serving.
  • Bundle dependencies separately.
  • Minify JavaScript code.
  • Profiling Webpack generated build.
  • Adding public assets for your app.
  • Creating custom index template.

Code: React Speed UI framework styles

In this chapter we will start designing our very own React Speed UI framework for your apps. We will do so using Flexbox, PostCSS, and custom React components.

Designing a custom UI framework is an ambitious undertaking. Our task becomes achievable if we scope our design goals upfront.

Speed. Like the name suggests, our UI framework is built for speed of development and creating performant apps.

Single Page App. We will design various UI components required for a single page app including landing page, buttons, forms, navigation menu, interactive content cards, and footer.

Responsive. Our app will be responsive and components will render according to target screen size.

Customizable. We want our UI framework to be easily customizable using custom color themes.

Reusable. The UI frameworks will be reusable across multiple apps.

Simple. We will keep our UI framework simple to understand, extend, and reuse.

Optimized. Speed UI framework will be production ready and optimized for light payloads.

Reactive. This topic is TBD. We will see if using Microservices and Reactive architectural patterns can be in scope of this book.

State Machine. Our UI framework will support state management. This is topic for an advanced chapter, however we will consider this goal as we design the framework.

Expressive. Our UI framework will be reusable in expressive, English like statements.

Code: Page component, YouTube component, GitHub component, Workflow component,
IconText component.

The objective at this stage is to speedily "prototype" new features and code within your React project. Subsequent chapters on Designing Component Internals, Wiring Multiple Components, and Refactoring Existing Components will go over best practices to create performant, reusable, and maintainable code.

  • Designing React components rapidly from samples available on the Web.
  • Using Web Embeds like YouTube, Flickr, Twitter, to create React components.
  • Integrating third-party REST APIs to start creating React components.
  • Moving from a wireframe to a React component.
  • Starting with a data table and turing this into a React component.
  • How to handle real-time streams as a React component.
  • How to model documents as a React component.
  • How to enhance HTML elements as React components.

Note: This chapter is TBD.

  • Naming files, folders, and modules (Df)
  • Imports and exports (Di)
  • Stateless components and pure functions (Dp)
  • Classes and inheritance (Dc)
  • Constructor and binding (Db)
  • Property types (Dt)
  • State management (Ds)
  • Lifecycle methods (Dl)
  • Render and ReactDOM.render methods (Dr)
  • JSX features and syntax (Dj)

Note: This chapter is TBD.

  • When to use presentational verses container components.
  • Strategy for passing component as a property to another component.
  • Reconciliation algorithm and keys for dynamic children.

Code: All 10 components are available under /app/components

  • Learn about component layout strategies and create HomePage component.
  • Develop Aside component.
  • Create Footer component.
  • Header component.
  • Sidebar component.
  • BlogPage layout component.
  • Blog component.
  • Post component.
  • Router configuration.
  • Navigation component.
  • NavLink component.

Note: This chapter is TBD.

  • Refactoring to render node children.
  • ES5 to ES6 React component definition
  • Testing and refactoring
  • Browsersync multi-device testing.
  • JavaScript lint using eslint.
  • Configuring eslint.
  • Eslint command line interface.
  • Eslint webpack integration.
  • Fixing eslint reported problems.
  • StyleLint for CSS.
  • StyleLint CLI.
  • Fixing StyleLint reported problems.
  • Webpack integration for StyleLint.

Component Design Workflow

Note: This chapter is TBD.

Plan is to draw out the Big Picture of component design workflow. Connecting the dots from prior five chapters which detail the workflow.

Note: This chapter is in progress.

  • Compare Firebase with another popular framework Meteor.
  • Host your front-end app using Firebase hosting.
  • How Firebase stores files and data.
  • Designing a REST API using Firebase.
  • For what kind of apps is Firebase not ideal.

React Developer Experience

Note: This chapter is TBD.

Plan is to add Kadira Storybook, create React playgrounds, Redux dev tools, and add visual code analytics.

reactspeedcoding's People

Contributors

manavsehgal 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.