Mega Boilerplate is a starter project generator that focuses on simplicity and ease of use, while providing you with flexibility of choices. It was heavily inspired by the Hackathon Starter, but unlike it, you can customize any part of your application stack β from web framework and database to CSS preprocessor and client-side JavaScript framework. Currently, generators are primarily limited to Node.js web apps, but I am planning to expand support for other platforms and languages in the near future.
Table of Contents
- Getting Started
- Express
- Meteor
- Jekyll
- Middleman
- JS Library
- Database Setup
- MongoDB
- MySQL
- PostgreSQL
- SQLite
- Project Structure
- Obtaining API Keys
- Learning Resources
- React / Redux
- Cheatsheets
- ES6
- JavaScript Date
- Deployment
- FAQ
- React
- Angular
- Changelog
- Contributing
- License
Getting Started
Prerequisites
- Node.js 6.0
- Git
- Command Line Tools
- Mac OS X: Xcode or
xcode-select --install
- Windows: Visual C++ Build Tools 2015
- Ubuntu:
sudo apt-get install build-essential
- Fedora:
sudo dnf groupinstall "Development Tools"
- OpenSUSE:
sudo zypper install --type pattern devel_basis
Express
Download and extract the project. Then in your Terminal type the following:
$ cd megaboilerplate-app
# Install NPM dependencies
$ npm install
# Start the app
$ node server.js
# Express server listening on port 3000
Note: If you have selected Gulp or NPM build tool, you may also need to run npm run build
command.
Note: If you have selected a database, please make sure it is up and running. For additional information, see Database Setup.
Jekyll
Prerequisites
$ cd megaboilerplate-app
# Start Jekyll app
$ jekyll serve
# Server address: http://127.0.0.1:4000/
# Server running... press ctrl-c to stop.
Middleman
Prerequisites
$ cd megaboilerplate-app
# Install Ruby dependencies
$ bundle install
# Start Middleman app
$ bundle exec middleman
# The Middleman is loading
# View your site at "http://localhost:4567"
JS Library
This JavaScript library boilerplate was inspired and based on Dan Abramov's library-boilerplate project. The main idea here is you write your code in ES6, which then gets transpiled into CommonJS and UMD builds. Consider lodash as an example - a very popular JavaScript library that supports ES6 import
, CommonJS require()
and can be used inside a browser via <script>
tag.
$ cd megaboilerplate-app
# Install NPM dependencies
$ npm install
# ES5 / CommonJS build
$ npm run build
# UMD build
$ npm run build:umd
# Run tests
$ npm test
Database Setup
MongoDB
Install Homebrew package manager. Then follow the steps below to install and setup MongoDB.
# Update Homebrew's package database
$ brew update
# Install MongoDB
$ brew install mongodb
# Create the data directory
$ sudo mkdir -p /data/db
# Set permissions for the data directory
$ sudo chown -R `whoami` /data/db
# Run MongoDB Server
$ mongod
- Download and install the current stable release.
- Create the data directory: C:\data\db.
- Run MongoDB Server by opening
mongod.exe
in C:\Program Files\MongoDB\Server\3.2\bin.
# Import the public key used by the package management system
$ sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv EA312927
# Create a source list file for MongoDB
$ echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.2.list
# Update the repository
$ sudo apt-get update
# Install the latest stable version of MongoDB
$ sudo apt-get install -y mongodb-org
# Start MongoDB service
$ sudo service mongod start
MySQL
Use database settings below in the .env
file.
Key | Value |
---|---|
DB_HOST |
localhost |
DB_USER |
root |
DB_PASSWORD |
(use root password configured during installation or leave blank) |
DB_NAME |
mysql |
Install Homebrew package manager. Then follow the steps below to install and start MySQL.
# Update Homebrew's package database
$ brew update
# Install MySQL
$ brew install mysql
# Start MySQL Server
$ mysql.server start
- Download MySQL Installer for Windows.
- Start the installer and follow instructions until the installation is complete.
- When prompted, choose Server only or Developer Default setup type.
Note: Alternatively, you may use XAMPP, which already comes bundled with MySQL and phpMyAdmin.
# Update the repository
$ sudo apt-get update
$ sudo apt-get upgrade
# Install MySQL
$ sudo apt-get install mysql-server
PostgreSQL
Use database settings below in the .env
file.
Key | Value |
---|---|
DB_HOST |
localhost |
DB_USER |
postgres |
DB_PASSWORD |
(use root password configured during installation) |
DB_NAME |
postgres |
Install Homebrew package manager. Then follow the steps below to install and start PostgreSQL.
# Update Homebrew's package database
$ brew update
# Install PostgreSQL
$ brew install postgres
# Start PostgreSQL Server
$ postgres -D /usr/local/var/postgres
- Download the latest version of PostgreSQL Installer.
- Start the installer and follow instructions until the installation is complete.
# Update the repository
$ sudo apt-get update
$ sudo apt-get upgrade
# Install PostgreSQL
$ sudo apt-get install postgresql postgresql-contrib
SQLite
No additional steps required. Package sqlite3
will be automatically installed during npm install
in Getting Started.
Project Structure
Due to the nature of this project, there are too many possible project structure variations to list here. For the sake of simplicity, let's consider just the following project types:
- Traditional Node.js Web App
- React App
- AngularJS App
- Meteor App
Traditional Node.js Web App
This is perhaps the most straightforward web app type that does not use any client-side JavaScript frameworks or build tools. Is also the closest thing to Hackathon Starter project.
.
βββ config/ # Configuration files for OAuth, database, etc.
β βββ passport.js/ # Passport strategies
βββ controllers/ # Express route handlers
βββ models/ # Express database models
βββ public/
β βββ css/ # Sass/LESS/PostCSS/CSS stylesheets (both source and generated)
β βββ fonts/ # Web fonts
β βββ js/ # Client-side JavaScript and third-party vendor files
βββ views/ # Templates
βββ test/ # Unit tests
βββ .env # API keys, passwords, and other sensitive information
βββ server.js # Express application
βββ package.json # NPM Dependencies and scripts
React App
The new hotness of the web β Universal JavaScript app, powered by React, Redux, React Router and Server Rendering.
Note: Some files were ommited like gulpfile.js
and webpack.config.js
.
.
βββ app/ # React application
β βββ actions/ # Redux actions
β βββ components/ # React components
β βββ reducers/ # Redux reducers
β βββ store/ # Store initialization and configuration
β βββ main.js # Client-side app entry-point
β βββ routes.js # Universal application routes (React Router)
βββ controllers/ # Express route handlers
βββ models/ # Express database models
βββ public/
β βββ css/ # Sass/LESS/PostCSS/CSS stylesheets (both source and generated)
β βββ fonts/ # Font Awesome web fonts
β βββ js/ # Third-party vendor files and generated React app (bundle.js)
βββ views/
β βββ layout.jade # Main container, into which React app is rendered
β βββ loading.jade # Loading spinner animation for OAuth 1.0 / 2.0 authentication flow inside a popup
βββ .babelrc # Babel config
βββ .env # API keys, passwords, and other sensitive information
βββ server.js # Express application
βββ package.json # NPM Dependencies and scripts
AngularJS App
Your typical MEAN stack (MongoDB, Express, AngularJS, Node.js). Originally, I was not planning on adding AngularJS 1.x generator, especailly with Angular 2 around the corner. So without investing too much time, I kept it real simple: no Browserify, no ES6 classes, no AngularJS 1.5 components. Once officially released, Angular 2 generator will be more elaborate with quite a few additional options.
.
βββ app/ # Angular app directory
β βββ controllers/ # Angular controllers
β βββ partials/ # Angular view templates
β βββ services/ # Angular services
β βββ store/ # Store initialization and configuration
β βββ app.js # Main Angular app file
β βββ index.html # Main layout template
βββ controllers/ # Express route handlers
βββ models/ # Express database models
βββ public/
β βββ css/ # Sass/LESS/PostCSS/CSS stylesheets (both source and generated)
β βββ js/ # Compiled Angular app and third-party vendor files, e.g. angular.js, angular-route.js
βββ .env # API keys, passwords, and other sensitive information
βββ gulpfile.js # Compiles Angular application and templates
βββ server.js # Express application
βββ package.json # NPM Dependencies and scripts
Obtaining API Keys
To use any of the included OAuth providers (e.g. Facebook, Twitter, Google), you will need to obtain API keys. I have included "throw-away" API keys for all OAuth providers to get you up and running quickly, but be sure to update them with your own keys.
- Go to [Facebook Developers](https://developers.facebook.com/). - Click on **My Apps** dropdown, then select **Add a New App**. - Select **Website** platform, then click on **Skip and Create App ID** button. - Enter a **name** and choose a **category** for your app. - Click on **Create App ID** button. - Copy and paste **App ID** and **App Secret** keys into `.env` file: - `FACEBOOK_ID='YOUR_APP_ID'` - `FACEBOOK_SECRET='YOUR_APP_SECRET'` - Click on the **Settings** tab, then click on **+ Add Platform** button. - Select **Website**, then enter `http://localhost:3000/auth/facebook/callback` in the **Site URL**.Note: If you are using React or AngularJS, copy and paste App Secret into .env
file and App ID into app/actions/oauth.js (React) and app/app.js (AngularJS).
Note: If you are using React or AngularJS, copy and paste client secret into .env
file and client ID into app/actions/oauth.js (React) and app/app.js (AngularJS).
Note: If you are using React or AngularJS, copy and paste Consumer Secret into .env
file and Consumer Key into app/actions/oauth.js (React) and app/app.js (AngularJS).
Note: If you are using React or AngularJS, copy and paste Secure key into .env
file and Application ID into app/actions/oauth.js (React) and app/app.js (AngularJS).
Note: If you are using React or AngularJS, copy and paste client secret into .env
file and client ID into app/actions/oauth.js (React) and app/app.js (AngularJS).
Learning Resources
Web Tools
Express
- Creating a Simple RESTful Web App with Node.js, Express, and MongoDB
- How To Implement Password Reset In Node.js
React / Redux
π₯ React in 7 Minutesπ₯ Getting Started with Redux (30 free videos)π₯ Building React Applications with Idiomatic Redux (27 free videos)π Create a character voting app using React, Node.js, MongoDB and Socket.IOπ Handcrafting an Isomorphic Redux Applicationπ React.js Introduction For People Who Know Just Enough jQuery To Get By
Performance and SEO
AngularJS
- John Papa's Angular Style Guide
- Build an Instagram clone with AngularJS, Satellizer, Node.js and MongoDB
- Create a TV Show Tracker using AngularJS, Node.js and MongoDB
Jekyll
Middleman
- How to Setup a Static Website with Middleman
- Static Website Generators Reviewed: Jekyll, Middleman, Roots, Hugo
JS Library
Bookshelf.js (SQL ORM)
Mongoose (MongoDB ODM)
Cheatsheets
ES6 Cheatsheet
Declarations
Declares a read-only named constant.
const name = 'yourName';
Declares a block scope local variable.
let index = 0;
Template Strings
Using the `${}` syntax, strings can embed expressions.
const name = 'Oggy';
const age = 3;
console.log(`My cat is named ${name} and is ${age} years old.`);
Modules
To import functions, objects or primitives exported from an external module. These are the most common types of importing.
import name from 'module-name';
import * as name from 'module-name';
import { foo, bar } from 'module-name';
To export functions, objects or primitives from a given file or module.
export { myFunction };
export const name = 'yourName';
export default myFunctionOrClass
Spread Operator
The spread operator allows an expression to be expanded in places where multiple arguments (for function calls) or multiple elements (for array literals) are expected.
myFunction(...iterableObject);
<ChildComponent {...this.props} />
Promises
A Promise is used in asynchronous computations to represent an operation that hasn't completed yet, but is expected in the future.
var p = new Promise(function(resolve, reject) { });
The catch()
method returns a Promise and deals with rejected cases only.
p.catch(function(reason) { /* handle rejection */ });
The then()
method returns a Promise. It takes 2 arguments: callback for the success & failure cases.
p.then(function(value) { /* handle fulfillment */, function(reason) { /* handle rejection */ });
The Promise.all(iterable)
method returns a promise that resolves when all of the promises in the iterable argument have resolved, or rejects with the reason of the first passed promise that rejects.
Promise.all([p1, p2, p3]).then(function(values) { console.log(values) });
Arrow Functions
Arrow function expression. Shorter syntax & lexically binds the this
value. Arrow functions are anonymous.
singleParam => { statements }
() => { statements }
(param1, param2) => expression
const arr = [1, 2, 3, 4, 5];
const squares = arr.map(x => x * x);
Classes
The class declaration creates a new class using prototype-based inheritance.
class Person {
constructor(name, age, gender) {
this.name = name;
this.age = age;
this.gender = gender;
}
incrementAge() {
this.age++;
}
}
JavaScript Date Cheatsheet
Unix Timestamp (seconds)
Math.floor(Date.now() / 1000);
Add 30 minutes to a Date object
var now = new Date();
now.setMinutes(now.getMinutes() + 30);
Date Formatting
// DD-MM-YYYY
var now = new Date();
var DD = now.getDate();
var MM = now.getMonth() + 1;
var YYYY = now.getFullYear();
if (DD < 10) {
DD = '0' + DD;
}
if (MM < 10) {
MM = '0' + MM;
}
console.log(MM + '-' + DD + '-' + YYYY); // 03-30-2016
// hh:mm (12 hour time with am/pm)
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes();
var amPm = hours >= 12 ? 'pm' : 'am';
hours = hours % 12;
hours = hours ? hours : 12;
minutes = minutes < 10 ? '0' + minutes : minutes;
console.log(hours + ':' + minutes + ' ' + amPm); // 1:43 am
Next week Date object
var today = new Date();
var nextWeek = new Date(today.getTime() + 7 * 24 * 60 * 60 * 1000);
Yesterday Date object
var today = new Date();
var yesterday = date.setDate(date.getDate() - 1);
Deployment
Once you are ready to deploy your app, you will need to create an account with a cloud platform to host it. These are not the only choices you have, but they are my top picks.
Heroku
- Download and install Heroku Toolbelt
- In Terminal, run
heroku login
, then enter your Heroku credentials - Navigate to the megaboilerplate-app directory and run the following commands:
git init
git add .
git commit -m 'Initial commit'
-
Then run
heroku create
to create a new Heroku app and link it with your current Git repositoryCreating app... done, β¬’ floating-mesa-51019 https://floating-mesa-51019.herokuapp.com/ | https://git.heroku.com/floating-mesa-51019.git
-
Run
git push heroku master
and you are done!
Note: If you have created a new app via Heroku Dashboard, you can link it with an existing Git repository by running:
heroku git:remote -a your-heroku-app-name
For more information, please visit Getting Started on Heroku with Node.js.
Heroku + PostgreSQL
Connecting to a Heroku Postgres database from outside of the Heroku network requires SSL. Furthermore, connection string given by Heroku (DATABASE_URL
) does not have "?ssl=true"
parameter by default.
The simplest solution is to add PGSSLMODE=require
config var in the Heroku dashboard or via CLI: heroku config:set PGSSLMODE=require
.
TODO: Deployment instructions for SQL and MongoDB databases. (Heroku Postgres, Compose, MongoLab)
Microsoft Azure
- Sign in to your account at Azure Portal
- Click on App Services, then click on Add button
- Enter an App name for your app and create or select an existing Resource Group
- Click on Create button and give it 15-20 seconds
- Find and select your app under App Services
- In the right-hand Settings sidebar, find and click on Deployment source
- Under Choose Source select Local Git Repository, then press OK
- Alternatively, you can choose GitHub to sync Azure with a GitHub repository for continous deployment
- Right below Deployment source, click on Deployment credentials and create new username and password, then hit Save
- Still inside Settings sidebar, find and click on Properties located under General settings
- Copy Git URL, e.g.
https://[email protected]:443/appname.git
- Navigate to the megaboilerplate-app directory and run the following commands:
git init
git add .
git commit -m 'Initial commit'
git remote add azure https://[email protected]:443/appname.git
- Note: Use your Git URL from above
- Run
git push azure master
, and when prompted, enter your password created under Deployment credentials - All set!
Digital Ocean
TODO
FAQ
React
Actions, reducers, stores, containers, provider...what? ΰ² _ΰ²°ΰ³
Despite being such a small library, Redux can be difficult to grasp for beginners. It took me almost three days until Redux "clicked" for me, even with my prior experience of working with React and Flux. Here is a TL;DR: summary:
Concept | Description |
---|---|
Actions | Your application events, e.g. fetch data from server. Success and failure events of data fetching could also be actions. Actions are just plain JavaScript objects. They typically have some data associated with it. For example, LOGIN_ERROR action may contain an error message. Actions describe the fact that something happened, but don't specify how the applicationβs state changes in response. This is the job of a reducer. |
Reducers | Basically your action handlers, internally implemented via Array.prototype.reduce() . This is where you specify how should the application state be updated when LOGIN_ERROR action is dispatched, for example. And that's it. How that state affects your application should still be managed in your components. One thing to note, you never mutate the state, but rather create a new copy of your current state + new changes using Object.assign() . |
Store | Brings actions and reducers together. Store holds entire application state, allows you access current state via getState() , and update application state via dispatch(action) . You typically have just one Redux store that is configured during the inital bootstrap stage. |
Provider | Syntactic sugar from react-redux library. <Provider> component wrapper makes the Redux store available to the connect() function. Alternatively, you can manually pass store as a prop to every connect() ed component. connect() is another syntactic sugar provided by react-redux which connects a React component to a Redux store. Alternatively, you can manually subscribe/unsubscribe to/from a store during componentDidMount() and componentDidUnmount() lifecycle of each component. |
Container | So-called smart components that are aware of Redux, whereas traditional components are now considered dumb components, which are not aware of Redux; they just render markup with given props. I intentionally combined containers and components into simply β components for the sake of simplicity. |
Backers
Support us with a monthly donation and help us continue our activities. [Become a backer]
Sponsors
Become a sponsor and get your logo on our website and on our README on Github with a link to your site. [Become a sponsor]
Sites Built with Mega Boilerplate
If you have built an app using Mega Boilerplate, please enter yourself here by sending a pull request.
Changelog
1.1.0 (June 10, 2016)
- Added Stylus CSS preprocessor support when no CSS Framework is selected.
- Generate
README.md
for each boilerplate with selected choices. - Enabled Webpack hot module replacement for Redux reducers.
- Updated React 15.0.2 to 15.1.0.
- Removed unused lodash require() in the user controller.
- Improved responsive design of login and signup container (Bootstrap).
- Fixed indentation inside profile update controller (SQL).
- Hide
password
field when callingtoJSON()
method on user model (Bookshelf.js / SQL). - Fixed a bug where an error was thrown after user updates their profile (SQL only).
- Fixed invalid file path for Bootstrap CSS/JS imports inside
layout.jade
. knexfile.js
is no longer generated twice.- Updated Redux learning resources section in README.
- Added special instructions to "Obtaining API Keys" section for React / AngularJS.
1.0.0 (June 8, 2016)
- Initial release.
Contributing
Pull requests from beginners and seasoned JavaScript developers are welcome! As it stands, Mega Boilerplate is pretty large in scope to be maintained by a single person, so I am asking for your help to contribute where you can, whether it's a small fix in README or adding a whole new generator type, e.g. Meteor, Angular 2, React Native, Electron.
License
MIT