Git Product home page Git Product logo

golang-react-template's Introduction

Golang / React template

This is a super slim starter kit for an app with a Golang backend (in the backend directory) and a React-based frontend (in the frontend) directory. In a nutshell:

  • Your frontend is a React app that is bundled into a single file (bundle.js).
  • You put your frontend code in the frontend directory. This mostly means adding componets and other stuff to the components directory.
  • The npm run start command will use watchify + browserify + reactify to create a single bundle.js file, which is stored in backend/public
  • The Golang backend is in the backend directory. gin is used to do live recompile.
  • The Golang server uses net/http to serve the contents of backend/public as a static site. The index file in this directory loads the bundle.js app generated by your frontend.

To use it, you'll need:

  • npm for package management
  • A Golang dev environment
  • gin

First, clone it down to your machine (duh!) and cd into your new directory. Then:

npm install
npm run start

View the app at http://localhost:3000.

This will start a dev server with live reload so that you can edit your go code in the backend and your React code in frontend. gin handles reload for Golang and watchify handles it for React. This is all handled using npm as a build tool:

"scripts": {
  "start": "npm run frontend & npm run backend",
  "frontend": "watchify -o backend/public/bundle.js -v -d frontend/main.js",
  "backend": "cd backend; gin"
},

golang-react-template's People

Contributors

odewahn avatar tockrock 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.