Skip to content

A component based web site starter kit and build tool, built with ReactJS, SASS, Babel, WebPack and Node.js.

License

Notifications You must be signed in to change notification settings

modesty/react2html

Repository files navigation

react2html

React2Html is a component based web site starter kit and build tool. It enables build-time data-driven reusable components for building multi-page website with compsability and efficiency, powered by ReactJS, SASS, Babel, WebPack and Node.js.

Component Based Web Application prompts data-driven reusable components for developing web applications. React2Html is a starter kit and build tool to enable component based development for web sites: static web site or service oriented HTML application can utilize the same data driven reusable component model to improve the effectiveness of site development and updates.

React2Html originates from the need to address some challengues from SPA when building a content-driven website, like multi-page navigation, page level SEO, UX tracking, together with consistent look and feel, sharable component among pages, compatible with different client side JavaScript frameworks, quick updates and deployment, etc. More discussions can be found at Build Component Based Website. It enables website development starting with reusables components and data models, through an automated build process, generates optimized HTML that is deployment-ready.

If you are facing some of the following challenges building a web site, React2Html is here to help:

  • Multi-page static site needs to share common components, like header, menu, side bars, footers, analytics, etc.,
  • Server-less static site needs SEO without special or additional process
  • Ajax based mash-up web site with frequent content updates needs efficient and consistent update mechanism
  • Consistent and effective way to minimizing, packaging and uglifying HTML, CSS and JavaScript
  • Static web site development needs to apply "separation of concerns" and DRY (Don't Repeat Yourself) philosophies
  • Architecturally, web site development needs to be data driven through reusable components' compositions
  • Existing web pages uses different client side JavaScript frameworks that needs common functionalities, like header, footer, page layout, etc.

With React2Html, a multi-page static site can be built by composing reusable functional stateless components, then generates HTML with data models through build process. Runtime model update (user interactions or Ajax) and rendering through Virtual DOM has been covered very well in React.js, it's optional with React2HTML: in addition to 'react to changes' at run time, React2Html focus on build-time component re-usability.

React2Html prompts 'component thinking': the building blocks should be stateless component, includes SASS modules for CSS, rather than raw HTML tags and CSS rules.

How it works

With React2Html, functional stateless components replaces HTML template, all HTML markups are generated from component. Style sheets are modularized by SASS, JavaScript is written in ES6 modules, both SASS and ES6 code are compiled into single bundle separately through babel and webpack. Everything comes together when build script runs, it scans the source code tree per configurations, generating main index.html in the root, also creating sub-directories for each page files, copy over all assets files to the relative path, calling webpack and its plugins to bundle ES5 JavaScript and CSS, and put everything to target folder. (configurable)

For example, the source tree looks like this:

    +react2html
      +src
        +images
          -logo.png
        +scripts
          +client
            +util
              -browser.uti.js
          +components
            -Footer.js
            -Head.js
            -Header.js
            -Main.js
            -Menu.js
          +model
            -footer.js
            -head.js
            -header.js
            -menu.js
          +pages
            -about.js
          -index.js
          -main.js
        +styles
          -_footer.scss
          -_header.scss
          -_layout.scss
          -_mixins.scss
          -_vars.scss
          -main.scss
        -apple-touch-icon.png
        -browserconfig.xml
        -crossdomain.xml
        -favicon.ico
        -humans.txt
        -robots.txt
        -tile.png
        -tile-wide.png				

After running React2Html build script npm start, the generated output directory would be:

    +react2html
      +target (Generated)
        +about (Generated) 
          -index.html (Generated)
        +images (Copied)
          -logo.png (Copied)
        +scripts (Generated) 
          -react2html-bundle.js  (Generated)
        +styles (Generated)
          -react2html-bundle.css (Generated)
        -apple-touch-icon.png (Copied)
        -browserconfig.xml (Copied)
        -crossdomain.xml (Copied)
        -favicon.ico (Copied)
        -humans.txt (Copied)
        -index.html (Generated)
        -robots.txt (Copied)
        -tile.png (Copied)
        -tile-wide.png (Copied)

Notice the root index.js becomes index.html, and all [page_name].js files under pages folder are compiled and output to [page_name]_folder\index.html, clean url is preserved.

All scripts under model are all JSON files in the starter kit, they can be replaced by API responses as needed. This separated build-time model approach makes updating web site component a trivial task.

All client side scripts reside in scripts\client\ folder, the entry point is scripts\main.js, any scripts modules imported, directly or indirectly, will be compiled into scripts\react2html-bundle.js. Besides, all common JavaScript libraries, like modernizr, jQuery, etc., are not part of the bundle, they're configured to loaded from CDN.

Please note, by default, all scripts under scripts\components\ are build time scripts. If imported through scripts\main.js, it'll be part of scripts\react2html-bundle.js and participate in client side rendering.

Similarly, all SASS files imported through styles\main.scss will be part of the final target\styles\react2html-bundle.css.

All generated HTML, CSS and JavaScripts are uglified and minified to improve initial loading performance.

Benefits of React2Html

Here below are primary reasons for us to use React2Html for developing static web sites:

  • Build-time component model provides reusable and sharable components for creating and updating web pages
  • Data driven component becomes possible even for static web site development, no more error-prone copy & paste
  • Promotes thinking in components and modules, rather than tags and elements, for productivity and compose-ability
  • Cleaner code, modular structure, fast build and easy deploy
  • Leveraging latest technologies: babel for ES6 syntax, to make site JavaScript future-proof
  • Better performance: common libraries loaded from CDN or browser cache, site specific JavaScript and CSS are bundled
  • Flexible client side JavaScript: any client side JavaScript framework can work with React2Html, React, Polymer, Ember, to name a few if client side JavaScript framework is needed. On the flip side, React2Html can work without any client side JavaScript, jQuery can be removed if no client side scripts is needed
  • No special process for SEO: no worry about search engine not loading client JavaScript as SPA does, no special tag and no server-pre-generated HTML content is needed
  • Server-less and totally decoupled client code from server, easier develop, deploy and debug

Get Started

Prerequisite

Clone and install dependencies:

    $ cd [your_site_dev_folder]
    $ git clone https://github.com/modesty/react2html
    $ npm i		

Build & Run:

For development, auto-rebuilt and auto-reload:

	$ npm start

All source code will be scanned and compiled, a simple HTTP server is started automatically, serving everything from target folder on port 8181.

Default browser is launched automatically, root index.html will automatically loaded.

For production build, run:

	$ npm build

Debug & Develop on localhost

React2Html comes with two watchers built-in: one for static asset files and WebPack watcher for SASS and JavaScripts. Whenever assets files changes, it'll be reflected in target folder automatically; Whenever SCSS or JavaScript changes, corresponding component/pages/bundles will be rebuilt and re-deployed.

When site is rebuilt, browser will auto-reload the updated file. (fixed in v0.1.5)

Customization

When source tree structure or out put folder/file name needs customized, just update tool\base.config.js. Compiled bundle file name and CDN loaded libraries are also configured in the same file.

More details can be found at Build Component Based Website.

Contribution

Participating in this project, you are expected to honor open code of conduct.

License

Licensed under the Apache License Version 2.0.

Support

I'm currently running this project in my spare time. Thanks all for your stars and supports.

About

A component based web site starter kit and build tool, built with ReactJS, SASS, Babel, WebPack and Node.js.

Resources

License

Stars

Watchers

Forks

Packages

No packages published