Hackathon Starter

Live Demo: Link

Jump to What's new?

A boilerplate for Node.js web applications.

If you have attended any hackathons in the past, then you know how much time it takes to get a project started: decide on what to build, pick a programming language, pick a web framework, pick a CSS framework. A while later, you might have an initial project up on GitHub, and only then can other team members start contributing. Or how about doing something as simple as Sign in with Facebook authentication? You can spend hours on it if you are not familiar with how OAuth 2.0 works.

When I started this project, my primary focus was on simplicity and ease of use. I also tried to make it as generic and reusable as possible to cover most use cases of hackathon web apps, without being too specific. In the worst case, you can use this as a learning guide for your projects, if for example you are only interested in Sign in with Google authentication and nothing else.

Testimonials

“Nice! That README alone is already gold!”
— Adrian Le Bas

“Awesome. Simply awesome.”
— Steven Rueter

“I'm using it for a year now and many projects, it's an awesome boilerplate and the project is well maintained!”
— Kevin Granger

“Small world with Sahat's project. We were using his hackathon starter for our hackathon this past weekend and got some prizes. Really handy repo!”
— Interview candidate for one of the companies I used to work with.

Modern Theme

Flatly Bootstrap Theme

API Examples

Table of Contents

Features

  • Login
    • Local Authentication using Email and Password
    • OAuth 2.0 Authentication: Sign in with Google, Facebook, X (Twitter), LinkedIn, Twitch, Github, Snapchat
  • User Profile and Account Management
    • Gravatar
    • Profile Details
    • Change Password
    • Forgot Password
    • Reset Password
    • Verify Email
    • Link multiple OAuth strategies to one account
    • Delete Account
  • Contact Form (powered by SMTP via Sendgrid, Mailgun, AWS SES, etc.)
  • File upload
  • API Examples
    • Facebook, Foursquare, Tumblr, Pinterest, Github, Steam, Quickbooks, Paypal, Stripe, Twilio (text messaging), Lob (USPS Mail), HERE Maps, Google Maps, Google Drive, Google Sheets, Alpha Vantage (stocks and finance info) with ChartJS, Last.fm, New York Times, Web Scraping,
  • Flash notifications
    • reCaPTCHA and rate limit protection
  • CSRF protection
  • MVC Project Structure
  • Node.js clusters support
  • HTTPS Proxy support (via ngrok, Cloudflare, etc.)
  • Sass stylesheets (auto-compiled via middleware)
  • Bootstrap 5
  • "Go to production" checklist

Prerequisites

  • MongoDB (local install OR hosted)

    • Local Install: MongoDB
    • Hosted: No need to install, see the MongoDB Atlas section
  • Node.js 18+

  • Command Line Tools

  •  Mac OS X: Xcode (or OS X 10.9+: xcode-select --install)

  •  Windows: Visual Studio Code + Windows Subsystem for Linux - Ubuntu OR Visual Studio

  •  Ubuntu /  Linux Mint: sudo apt-get install build-essential

  •  Fedora: sudo dnf groupinstall "Development Tools"

  •  OpenSUSE: sudo zypper install --type pattern devel_basis

Note: If you are new to Node or Express, you may find Node.js & Express From Scratch series helpful for learning the basics of Node and Express. Alternatively, here is another great tutorial for complete beginners - Getting Started With Node.js, Express, MongoDB.

Getting Started

Step 1: The easiest way to get started is to clone the repository:

# Get the latest snapshot
git clone https://github.com/sahat/hackathon-starter.git myproject

# Change directory
cd myproject

# Install NPM dependencies
npm install

# Then simply start your app
node app.js

Note: I highly recommend installing Nodemon. It watches for any changes in your node.js app and automatically restarts the server. Once installed, instead of node app.js use nodemon app.js. It will save you a lot of time in the long run, because you won't need to manually restart the server each time you make a small change in code. To install, run sudo npm install -g nodemon.

Step 2: Obtain API Keys and change configs if needed After completing step 1 and locally installing MongoDB, you should be able to access the application through a web browser and use local user accounts. However, certain functions like API integrations may not function correctly until you obtain specific keys from service providers. The keys provided in the project serve as placeholders, and you can retain them for features you are not currently utilizing. To incorporate the acquired keys into the application, you have two options:

  1. Set environment variables in your console session: Alternatively, you can set the keys as environment variables directly through the command prompt. For instance, in bash, you can use the export command like this: export FACEBOOK_SECRET=xxxxxx. This method is considered a better practice as it reduces the risk of accidentally including your secrets in a code repository.
  2. Replace the keys in the .env.example file: Open the .env.example file and update the placeholder keys with the newly acquired ones. This method has the risk of accidental checking-in of your secrets to code repos.

What to get and configure:

  • SMTP

    • For user workflows for reset password and verify email
    • For contact form processing
  • reCAPTCHA

    • For contact form submission
  • OAuth for social logins (Sign in with / Login with)

    • Depending on your application need, obtain keys from Google, Facebook, X (Twitter), LinkedIn, Twitch, GitHub, Snapchat. You don't have to obtain valid keys for any provider that you don't need. Just remove the buttons and links in the login and account pug views before your demo.
  • API keys for service providers in the API Examples if you are planning to use them.

  • MongoDB Atlas

    • If you are using MongoDB Atlas instead of a local db, set the MONGODB_URI to your db URI (including your db user/password).
  • Email address

    • Set SITE_CONTACT_EMAIL as your incoming email address for messages sent to you thru the contact form.
    • Set TRANSACTION_EMAIL as the "From" address for emails sent to users thru the lost password or email verification emails to users. You may set this to the same address as SITE_CONTACT_EMAIL.
  • ngrok and HTTPS If you want to use some API that needs HTTPS to work (for example Pinterest or Facebook), you will need to download ngrok. Start ngrok, set your BASE_URL to the forwarding address (i.e https://3ccb-1234-abcd.ngrok-free.app ), and use the forwarding address to access your application. If you are using a proxy like ngrok, you may get a CSRF mismatch error if you try to access the app at http://localhost:8080 instead of the https://...ngrok-free.app address.

    After installing or downloading the standalone ngrok client you can start ngrok to intercept the data exchanged on port 8080 with ./ngrok http 8080 in Linux or ngrok http 8080 in Windows.

Step 3: Develop your application and customize the experience

Step 4: Optional - deploy to production See:

Obtaining API Keys

You will need to obtain appropriate credentials (Client ID, Client Secret, API Key, or Username & Password) for API and service provides which you need. See Step 2 in the Getting started section for more info.

SMTP

Obtain SMTP credentials from a provider for transactional emails. Set the SMTP_USER, SMTP_PASSWORD, and SMTP_HOST environment variables accordingly. When picking the smtp host, keep in mind that the app is configured to use secure SMTP transmissions over port 465 out of the box. You have the flexibility to select any provider that suits your needs or take advantage of one of the following providers, each offering a free tier for your convenience.

Provider Free Tier Website
SendGrid 100 emails/day for free https://sendgrid.com
SMTP2Go 1000 emails/month for free https://www.smtp2go.com
Brevo 300 emails/day for free https://www.brevo.com

  • Visit Google reCAPTCHA Admin Console
  • Enter your application's name as the Label
  • Choose reCAPTCHA v2, "I'm not a robot" Checkbox
  • Enter localhost as the domain. You can have other domains added in addition to localhost
  • Accept the terms and submit the form
  • Copy the Site Key and the Secret key into .env. These keys will be accessible under Settings, reCAPTCHA keys drop down if you need them again later

  • Visit Google Cloud Console
  • Click on the Create Project button
  • Enter Project Name, then click on Create button
  • Then click on APIs & auth in the sidebar and select API tab
  • Click on Google+ API under Social APIs, then click Enable API
  • Click on Google Drive API under G Suite, then click Enable API
  • Click on Google Sheets API under G Suite, then click Enable API
  • Next, under APIs & auth in the sidebar click on Credentials tab
  • Click on Create new Client ID button
  • Select Web Application and click on Configure Consent Screen
  • Fill out the required fields then click on Save
  • In the Create Client ID modal dialog:
  • Application Type: Web Application
  • Authorized Javascript origins: set to your BASE_URL value (i.e. http://localhost:8080, etc)
  • Authorized redirect URI: set to your BASE_URL value followed by /auth/google/callback (i.e. http://localhost:8080/auth/google/callback )
  • Click on Create Client ID button
  • Copy and paste Client ID and Client secret keys into .env

  • Visit Snap Kit Developer Portal
  • Click on the + button to create an app
  • Enter a name for your app
  • Enable the scopes that you will want to use in your app
  • Click on the Continue button
  • Find the Kits section and make sure that Login Kit is enabled
  • Find the Redirect URLs section, click the + Add button, and enter your BASE_URL value followed by /auth/snapchat/callback (i.e. http://localhost:8080/auth/snapchat/callback )
  • Find the Development Environment section. Click the Generate button next to the Confidential OAuth2 Client heading within it.
  • Copy and paste the generated Private Key and OAuth2 Client ID keys into .env
  • Note: OAuth2 Client ID is SNAPCHAT_ID, Private Key is SNAPCHAT_SECRET in .env
  • To prepare the app for submission, fill out the rest of the required fields: Category, Description, Privacy Policy Url, and App Icon

  • Visit Facebook Developers
  • Click My Apps, then select *Add a New App from the dropdown menu
  • Enter a new name for your app
  • Click on the Create App ID button
  • Find the Facebook Login Product and click on Facebook Login
  • Instead of going through their Quickstart, click on Settings for your app in the top left corner
  • Copy and paste App ID and App Secret keys into .env
  • Note: App ID is FACEBOOK_ID, App Secret is FACEBOOK_SECRET in .env
  • Enter localhost under App Domains
  • Choose a Category that best describes your app
  • Click on + Add Platform and select Website
  • Enter your BASE_URL value (i.e. http://localhost:8080, etc) under Site URL
  • Click on the Settings tab in the left nav under Facebook Login
  • Enter your BASE_URL value followed by /auth/facebook/callback (i.e. http://localhost:8080/auth/facebook/callback ) under Valid OAuth redirect URIs

Note: After a successful sign-in with Facebook, a user will be redirected back to the home page with appended hash #_=_ in the URL. It is not a bug. See this Stack Overflow discussion for ways to handle it.


  • Go to Account Settings
  • Select Developer settings from the sidebar
  • Then click on OAuth Apps and then on Register new application
  • Enter Application Name and Homepage URL. Enter your BASE_URL value (i.e. http://localhost:8080, etc) as the homepage URL.
  • For Authorization Callback URL: your BASE_URL value followed by /auth/github/callback (i.e. http://localhost:8080/auth/github/callback )
  • Click Register application
  • Now copy and paste Client ID and Client Secret keys into .env file

  • Sign in at https://apps.twitter.com
  • Click Create a new application
  • Enter your application name, website and description. Set the website as your BASE_URL value (i.e. http://localhost:8080, etc).
  • For Callback URL: your BASE_URL value followed by /auth/twitter/callback (i.e. http://localhost:8080/auth/twitter/callback )
  • Go to Settings tab
  • Under Application Type select Read and Write access
  • Check the box Allow this application to be used to Sign in with Twitter
  • Click Update this Twitter's applications settings
  • Copy and paste Consumer Key and Consumer Secret keys into .env file

  • Sign in at LinkedIn Developer Network
  • From the account name dropdown menu select API Keys
  • It may ask you to sign in once again
  • Click + Add New Application button
  • Fill out all the required fields
  • OAuth 2.0 Redirect URLs: your BASE_URL value followed by /auth/linkedin/callback (i.e. http://localhost:8080/auth/linkedin/callback )
  • JavaScript API Domains: your BASE_URL value (i.e. http://localhost:8080, etc).
  • For Default Application Permissions make sure at least the following is checked:
  • r_basicprofile
  • Finish by clicking Add Application button
  • Copy and paste API Key and Secret Key keys into .env file
  • API Key is your clientID
  • Secret Key is your clientSecret

  • Sign up or log into your dashboard
  • Click on your profile and click on Account Settings
  • Then click on API Keys
  • Copy the Secret Key. and add this into .env file

  • Visit PayPal Developer
  • Log in to your PayPal account
  • Click Applications > Create App in the navigation bar
  • Enter Application Name, then click Create app
  • Copy and paste Client ID and Secret keys into .env file
  • App ID is client_id, App Secret is client_secret
  • Change host to api.paypal.com if you want to test against production and use the live credentials

  • Go to Foursquare for Developers
  • Click on My Apps in the top menu
  • Click the Create A New App button
  • Enter App Name, Welcome page url,
  • For Redirect URI: your BASE_URL value followed by /auth/foursquare/callback (i.e. http://localhost:8080/auth/foursquare/callback )
  • Click Save Changes
  • Copy and paste Client ID and Client Secret keys into .env file

  • Go to http://www.tumblr.com/oauth/apps
  • Once signed in, click +Register application
  • Fill in all the details
  • For Default Callback URL: your BASE_URL value followed by /auth/tumblr/callback (i.e. http://localhost:8080/auth/tumblr/callback )
  • Click ✔Register
  • Copy and paste OAuth consumer key and OAuth consumer secret keys into .env file

  • Go to http://steamcommunity.com/dev/apikey
  • Sign in with your existing Steam account
  • Enter your Domain Name based on your BASE_URL, then and click Register
  • Copy and paste Key into .env file

  • Visit the Twitch developer dashboard
  • If prompted, authorize the dashboard to access your twitch account
  • In the Console, click on Register Your Application
  • Enter the name of your application
  • Use OAuth Redirect URLs enter your BASE_URL value followed by /auth/twitch/callback (i.e. http://localhost:8080/auth/twitch/callback )
  • Set Category to Website Integration and press the Create button
  • After the application has been created, click on the Manage button
  • Copy and paste Client ID into .env
  • If there is no Client Secret displayed, click on the New Secret button and then copy and paste the Client secret into .env

  • Go to https://developer.here.com
  • Sign up and create a Freemium project
  • Create JAVASCRIPT/REST credentials. Copy and paste the APP_ID and APP into .env file.
  • Note that these credentials are available on the client-side, and you need to create a domain whitelist for your app credentials when you are publicly launching the app.

  • Go to https://www.twilio.com/try-twilio
  • Sign up for an account.
  • Once logged into the dashboard, expand the link 'show api credentials'
  • Copy your Account Sid and Auth Token


Project Structure

Name Description
config/passport.js Passport Local and OAuth strategies, plus login middleware.
controllers/api.js Controller for /api route and all api examples.
controllers/contact.js Controller for contact form.
controllers/home.js Controller for home page (index).
controllers/user.js Controller for user account management.
models/User.js Mongoose schema and model for User.
public/ Static assets (fonts, css, js, img).
public/js/application.js Specify client-side JavaScript dependencies.
public/js/app.js Place your client-side JavaScript here.
public/css/main.scss Main stylesheet for your app.
views/account/ Templates for login, password reset, signup, profile.
views/api/ Templates for API Examples.
views/partials/flash.pug Error, info and success flash notifications.
views/partials/header.pug Navbar partial template.
views/partials/footer.pug Footer partial template.
views/layout.pug Base template.
views/home.pug Home page template.
.dockerignore Folder and files ignored by docker usage.
.env.example Your API keys, tokens, passwords and database URI.
.eslintrc Rules for eslint linter.
.gitignore Folder and files ignored by git.
app.js The main application file.
docker-compose.yml Docker compose configuration file.
Dockerfile Docker configuration file.
package.json NPM dependencies.
package-lock.json Contains exact versions of NPM dependencies in package.json.

Note: There is no preference for how you name or structure your views. You could place all your templates in a top-level views directory without having a nested folder structure if that makes things easier for you. Just don't forget to update extends ../layout and corresponding res.render() paths in controllers.

List of Packages

Package Description
@fortawesome/fontawesome-free Symbol and Icon library.
@googleapis/drive Google Drive API integration library.
@googleapis/sheets Google Sheets API integration library.
@ladjs/bootstrap-social Social buttons library.
@lob/lob-typescript-sdk Lob (USPS mailing / physical mailing service) library.
@node-rs/bcrypt Library for hashing and salting user passwords.
@octokit/rest GitHub API library.
@passport-js/passport-twitter X (Twitter) login support (OAuth 2).
@popperjs/core Frontend js library for poppers and tooltips.
axios HTTP client.
body-parser Node.js body parsing middleware.
bootstrap CSS Framework.
chai BDD/TDD assertion library.
cheerio Scrape web pages using jQuery-style syntax.
compression Node.js compression middleware.
connect-mongo MongoDB session store for Express.
dotenv Loads environment variables from .env file.
errorhandler Development-only error handler middleware.
eslint Linter JavaScript.
eslint-config-airbnb-base Configuration eslint by airbnb.
eslint-plugin-chai-friendly Makes eslint friendly towards Chai.js 'expect' and 'should' statements.
eslint-plugin-import ESLint plugin with rules that help validate proper imports.
express Node.js web framework.
express-flash Provides flash messages for Express.
express-rate-limit Rate limiting middleware for abuse protection.
express-session Simple session middleware for Express.
husky Git hook manager to automate tasks with git.
jquery Front-end JS library to interact with HTML elements.
lastfm Last.fm API library.
lint-stage Utility to lint files staged by git.
lob Lob API library.
lodash A utility library for working with arrays, numbers, objects, strings.
lusca CSRF middleware.
mailchecker Verifies that an email address is valid and not a disposable address.
mocha Test framework.
moment Parse, validate, compute dates and times.
mongodbMemoryServer MongoDB in memory (for running tests without a running db).
mongoose MongoDB ODM.
morgan HTTP request logger middleware for node.js.
multer Node.js middleware for handling multipart/form-data.
nodemailer Node.js library for sending emails.
nyc Coverage test.
passport Simple and elegant authentication library for node.js.
passport-facebook Sign-in with Facebook plugin.
passport-github2 Sign-in with GitHub plugin.
passport-google-oauth Sign-in with Google plugin.
passport-linkedin-oauth2 Sign-in with LinkedIn plugin.
passport-local Sign-in with Username and Password plugin.
passport-oauth Allows you to set up your own OAuth 1.0a and OAuth 2.0 strategies.
passport-oauth2-refresh A library to refresh OAuth 2.0 access tokens using refresh tokens.
passport-snapchat Sign-in with Snapchat plugin.
passport-steam-openid OpenID 2.0 Steam plugin.
patch-package Fix broken node modules ahead of fixes by maintainers.
paypal-rest-sdk PayPal APIs library.
pug Template engine for Express.
sass Sass compiler to generate CSS with superpowers
sinon Test spies, stubs and mocks for JavaScript.
stripe Offical Stripe API library.
supertest HTTP assertion library.
twilio Twilio API library.
twitch-passport Sign-in with Twitch plugin.
validator A library of string validators and sanitizers.

Useful Tools and Resources

  • JavaScripting - The Database of JavaScript Libraries
  • HTML to Pug converter - HTML to PUG is a free online converter helping you to convert HTML files to pug syntax in real-time.
  • JavascriptOO - A directory of JavaScript libraries with examples, CDN links, statistics, and videos.
  • Favicon Generator - Generate favicons for PC, Android, iOS, Windows 8.

Recommended Design Resources

Recommended Node.js Libraries

  • Nodemon - Automatically restart Node.js server on code changes.
  • geoip-lite - Geolocation coordinates from IP address.
  • Filesize.js - Pretty file sizes, e.g. filesize(265318); // "265.32 kB".
  • Numeral.js - Library for formatting and manipulating numbers.
  • sharp - Node.js module for resizing JPEG, PNG, WebP and TIFF images.

Recommended Client-side Libraries

  • Framework7 - Full Featured HTML Framework For Building iOS7 Apps.
  • InstantClick - Makes your pages load instantly by pre-loading them on mouse hover.
  • NProgress.js - Slim progress bars like on YouTube and Medium.
  • Hover - Awesome CSS3 animations on mouse hover.
  • Magnific Popup - Responsive jQuery Lightbox Plugin.
  • Offline.js - Detect when user's internet connection goes offline.
  • Alertify.js - Sweet looking alerts and browser dialogs.
  • selectize.js - Styleable select elements and input tags.
  • drop.js - Powerful Javascript and CSS library for creating dropdowns and other floating displays.
  • scrollReveal.js - Declarative on-scroll reveal animations.

Pro Tips

  • Need to find a specific object inside an Array? Use _.find function from Lodash. For example, this is how you would retrieve an X (Twitter) token from database: var token = _.find(req.user.tokens, { kind: 'twitter' });, where 1st parameter is an array, and a 2nd parameter is an object to search for.

FAQ

Why do I get 403 Error: Forbidden when submitting a form?

You need to add the following hidden input element to your form. This has been added in the pull request #40 as part of the CSRF protection.

input(type='hidden', name='_csrf', value=_csrf)

Note: It is now possible to whitelist certain URLs. In other words, you can specify a list of routes that should bypass the CSRF verification check.

Note 2: To whitelist dynamic URLs use regular expression tests inside the CSRF middleware to see if req.originalUrl matches your desired pattern.

I am getting MongoDB Connection Error, how do I fix it?

That's a custom error message defined in app.js to indicate that there was a problem connecting to MongoDB:

mongoose.connection.on('error', (err) => {
  console.error(err);
  console.log('%s MongoDB connection error. Please make sure MongoDB is running.', chalk.red('✗'));
  process.exit();
});

You need to have a MongoDB server running before launching app.js. You can download MongoDB here, or install it via a package manager. Windows users, read Install MongoDB on Windows.

Tip: If you are always connected to the internet, you could just use MongoDB Atlas instead of downloading and installing MongoDB locally. You will only need to update database credentials in .env file.

I get an error when I deploy my app, why?

Chances are you haven't changed the Database URI in .env. If MONGODB is set to localhost, it will only work on your machine as long as MongoDB is running. When you deploy to Render, OpenShift, or some other provider, you will not have MongoDB running on localhost. You need to create an account with MongoDB Atlas, then create a free tier database. See Deployment for more information on how to set up an account and a new database step-by-step with MongoDB Atlas.

Why do you have all routes defined in app.js?

For the sake of simplicity. While there might be a better approach, such as passing app context to each controller as outlined in this blog, I find such a style to be confusing for beginners. It took me a long time to grasp the concept of exports and module.exports, let alone having a global app reference in other files. Tha to me is backward thinking. The app.js is the "heart of the app", it should be the one referencing models, routes, controllers, etc. When working solo on small projects, I prefer to have everything inside app.js as is the case with this REST API server.

How It Works (mini guides)

This section is intended for giving you a detailed explanation of how a particular functionality works. Maybe you are just curious about how it works, or perhaps you are lost and confused while reading the code, I hope it provides some guidance to you.

Custom HTML and CSS Design 101

HTML5 UP has many beautiful templates that you can download for free.

When you download the ZIP file, it will come with index.html, images, CSS and js folders. So, how do you integrate it with Hackathon Starter? Hackathon Starter uses the Bootstrap CSS framework, but these templates do not. Trying to use both CSS files at the same time will likely result in undesired effects.

Note: Using the custom templates approach, you should understand that you cannot reuse any of the views I have created: layout, the home page, API browser, login, signup, account management, contact. Those views were built using Bootstrap grid and styles. You will have to manually update the grid using a different syntax provided in the template. Having said that, you can mix and match if you want to do so: Use Bootstrap for the main app interface, and a custom template for a landing page.

Let's start from the beginning. For this example I will use Escape Velocity template: Alt

Note: For the sake of simplicity I will only consider index.html, and skip left-sidebar.html, no-sidebar.html, right-sidebar.html.

Move all JavaScript files from html5up-escape-velocity/js to public/js. Then move all CSS files from html5up-escape-velocity/css to public/css. And finally, move all images from html5up-escape-velocity/images to public/images. You could move it to the existing img folder, but that would require manually changing every img reference. Grab the contents of index.html and paste it into HTML To Pug.

Note: Do not forget to update all the CSS and JS paths accordingly.

Create a new file escape-velocity.pug and paste the Pug markup in views folder. Whenever you see the code res.render('account/login') - that means it will search for views/account/login.pug file.

Let's see how it looks. Create a new controller escapeVelocity inside controllers/home.js:

exports.escapeVelocity = (req, res) => {
  res.render('escape-velocity', {
    title: 'Landing Page'
  });
};

And then create a route in app.js. I placed it right after the index controller:

app.get('/escape-velocity', homeController.escapeVelocity);

Restart the server (if you are not using nodemon); then you should see the new template at http://localhost:8080/escape-velocity

I will stop right here, but if you would like to use this template as more than just a single page, take a look at how these Pug templates work: layout.pug - base template, index.pug - home page, partials/header.pug - Bootstrap navbar, partials/footer.pug - sticky footer. You will have to manually break it apart into smaller pieces. Figure out which part of the template you want to keep the same on all pages - that's your new layout.pug. Then, each page that changes, be it index.pug, about.pug, contact.pug will be embedded in your new layout.pug via block content. Use existing templates as a reference.

This is a rather lengthy process, and templates you get from elsewhere might have yet another grid system. That's why I chose Bootstrap for the Hackathon Starter. Many people are already familiar with Bootstrap, plus it's easy to get started with it if you have never used Bootstrap. You can also buy many beautifully designed Bootstrap themes at Themeforest, and use them as a drop-in replacement for Hackathon Starter. However, if you would like to go with a completely custom HTML/CSS design, this should help you to get started!


How do flash messages work in this project?

Flash messages allow you to display a message at the end of the request and access it on the next request and only the next request. For instance, on a failed login attempt, you would display an alert with some error message, but as soon as you refresh that page or visit a different page and come back to the login page, that error message will be gone. It is only displayed once. This project uses express-flash module for flash messages. And that module is built on top of connect-flash, which is what I used in this project initially. With express-flash you don't have to explicitly send a flash message to every view inside res.render(). All flash messages are available in your views via messages object by default, thanks to express-flash.

Flash messages have a two-step process. You use req.flash('errors', { msg: 'Error messages goes here' } to create a flash message in your controllers, and then display them in your views:

if messages.errors
  .alert.alert-danger.fade.in
    for error in messages.errors
      div= error.msg

In the first step, 'errors' is the name of a flash message, which should match the name of the property on messages object in your views. You place alert messages inside if message.errors because you don't want to show them flash messages are present. The reason why you pass an error like { msg: 'Error message goes here' } instead of just a string - 'Error message goes here', is for the sake of consistency. To clarify that, express-validator module which is used for validating and sanitizing user's input, returns all errors as an array of objects, where each object has a msg property with a message why an error has occurred. Here is a more general example of what express-validator returns when there are errors present:

[
  { param: "name", msg: "Name is required", value: "<received input>" },
  { param: "email", msg: "A valid email is required", value: "<received input>" }
]

To keep consistent with that style, you should pass all flash messages as { msg: 'My flash message' } instead of a string. Otherwise, you will see an alert box without an error message. That is because in partials/flash.pug template it will try to output error.msg (i.e. "My flash message".msg), in other words, it will try to call a msg method on a String object, which will return undefined. Everything I just mentioned about errors, also applies to "info" and "success" flash messages, and you could even create a new one yourself, such as:

Data Usage Controller (Example)

req.flash('warning', { msg: 'You have exceeded 90% of your data usage' });

User Account Page (Example)

if messages.warning
  .alert.alert-warning.fade.in
    for warning in messages.warning
      div= warning.msg

partials/flash.pug is a partial template that contains how flash messages are formatted. Previously, flash messages were scattered throughout each view that used flash messages (contact, login, signup, profile), but now, thankfully it uses a DRY approach.

The flash messages partial template is included in the layout.pug, along with footer and navigation.

body
    include partials/header

    .container
      include partials/flash
      block content

    include partials/footer

If you have any further questions about flash messages, please feel free to open an issue, and I will update this mini-guide accordingly, or send a pull request if you would like to include something that I missed.


How do I create a new page?

A more correct way to say this would be "How do I create a new route?" The main file app.js contains all the routes. Each route has a callback function associated with it. Sometimes you will see three or more arguments for a route. In a case like that, the first argument is still a URL string, while middle arguments are what's called middleware. Think of middleware as a door. If this door prevents you from continuing forward, you won't get to your callback function. One such example is a route that requires authentication.

app.get('/account', passportConfig.isAuthenticated, userController.getAccount);

It always goes from left to right. A user visits /account page. Then isAuthenticated middleware checks if you are authenticated:

exports.isAuthenticated = (req, res, next) => {
  if (req.isAuthenticated()) {
    return next();
  }
  res.redirect('/login');
};

If you are authenticated, you let this visitor pass through your "door" by calling return next();. It then proceeds to the next middleware until it reaches the last argument, which is a callback function that typically renders a template on GET requests or redirects on POST requests. In this case, if you are authenticated, you will be redirected to the Account Management page; otherwise, you will be redirected to the Login page.

exports.getAccount = (req, res) => {
  res.render('account/profile', {
    title: 'Account Management'
  });
};

Express.js has app.get, app.post, app.put, app.delete, but for the most part, you will only use the first two HTTP verbs, unless you are building a RESTful API. If you just want to display a page, then use GET, if you are submitting a form, sending a file then use POST.

Here is a typical workflow for adding new routes to your application. Let's say we are building a page that lists all books from the database.

Step 1. Start by defining a route.

app.get('/books', bookController.getBooks);

Note: As of Express 4.x you can define your routes like so:

app.route('/books')
  .get(bookController.getBooks)
  .post(bookController.createBooks)
  .put(bookController.updateBooks)
  .delete(bookController.deleteBooks)

And here is how a route would look if it required an authentication and an authorization middleware:

app.route('/api/twitter')
  .all(passportConfig.isAuthenticated)
  .all(passportConfig.isAuthorized)
  .get(apiController.getTwitter)
  .post(apiController.postTwitter)

Use whichever style makes sense to you. Either one is acceptable. I think that chaining HTTP verbs on app.route is a very clean and elegant approach, but on the other hand, I can no longer see all my routes at a glance when you have one route per line.

Step 2. Create a new schema and a model Book.js inside the models directory.

const mongoose = require('mongoose');

const bookSchema = new mongoose.Schema({
  name: String
});

const Book = mongoose.model('Book', bookSchema);
module.exports = Book;

Step 3. Create a new controller file called book.js inside the controllers directory.

/**
 * GET /books
 * List all books.
 */
const Book = require('../models/Book.js');

exports.getBooks = (req, res) => {
  Book.find((err, docs) => {
    res.render('books', { books: docs });
  });
};

Step 4. Import that controller in app.js.

const bookController = require('./controllers/book');

Step 5. Create books.pug template.

extends layout

block content
  .page-header
    h3 All Books

  ul
    for book in books
      li= book.name

That's it! I will say that you could have combined Step 1, 2, 3 as following:

app.get('/books',(req, res) => {
  Book.find((err, docs) => {
    res.render('books', { books: docs });
  });
});

Sure, it's simpler, but as soon as you pass 1000 lines of code in app.js it becomes a little challenging to navigate the file. I mean, the whole point of this boilerplate project was to separate concerns, so you could work with your teammates without running into MERGE CONFLICTS. Imagine you have four developers working on a single app.js, I promise you it won't be fun resolving merge conflicts all the time. If you are the only developer, then it's okay. But as I said, once it gets up to a certain LoC size, it becomes difficult to maintain everything in a single file.

That's all there is to it. Express.js is super simple to use. Most of the time you will be dealing with other APIs to do the real work: Mongoose for querying database, socket.io for sending and receiving messages over WebSockets, sending emails via Nodemailer, form validation using validator.js library, parsing websites using Cheerio, etc.


How do I use Socket.io with Hackathon Starter?

Dan Stroot submitted an excellent pull request that adds a real-time dashboard with socket.io. And as much as I'd like to add it to the project, I think it violates one of the main principles of the Hackathon Starter:

When I started this project, my primary focus was on simplicity and ease of use. I also tried to make it as generic and reusable as possible to cover most use cases of hackathon web apps, without being too specific.

When I need to use socket.io, I really need it, but most of the time - I don't. But more importantly, WebSockets support is still experimental on most hosting providers. Due to past provider issues with WebSockets, I have not include socket.io as part of the Hackathon Starter. For now... If you need to use socket.io in your app, please continue reading.

First, you need to install socket.io:

npm install socket.io

Replace const app = express(); with the following code:

const app = express();
const server = require('http').Server(app);
const io = require('socket.io')(server);

I like to have the following code organization in app.js (from top to bottom): module dependencies, import controllers, import configs, connect to database, express configuration, routes, start the server, socket.io stuff. That way I always know where to look for things.

Add the following code at the end of app.js:

io.on('connection', (socket) => {
  socket.emit('greet', { hello: 'Hey there browser!' });
  socket.on('respond', (data) => {
    console.log(data);
  });
  socket.on('disconnect', () => {
    console.log('Socket disconnected');
  });
});

One last thing left to change:

app.listen(app.get('port'), () => {

to

server.listen(app.get('port'), () => {

At this point, we are done with the back-end.

You now have a choice - to include your JavaScript code in Pug templates or have all your client-side JavaScript in a separate file - in app.js. I admit, when I first started with Node.js and JavaScript in general, I placed all JavaScript code inside templates because I have access to template variables passed in from Express right then and there. It's the easiest thing you can do, but also the least efficient and harder to maintain. Since then I almost never include inline JavaScript inside templates anymore.

But it's also understandable if you want to take the easier road. Most of the time you don't even care about performance during hackathons, you just want to "get shit done" before the time runs out. Well, either way, use whichever approach makes more sense to you. At the end of the day, it's what you build that matters, not how you build it.

If you want to stick all your JavaScript inside templates, then in layout.pug - your main template file, add this to head block.

script(src='/socket.io/socket.io.js')
script.
    let socket = io.connect(window.location.href);
    socket.on('greet', function (data) {
      console.log(data);
      socket.emit('respond', { message: 'Hey there, server!' });
    });

Note: Notice the path of the socket.io.js, you don't actually have to have socket.io.js file anywhere in your project; it will be generated automatically at runtime.

If you want to have JavaScript code separate from templates, move that inline script code into app.js, inside the $(document).ready() function:

$(document).ready(function() {

  // Place JavaScript code here...
  let socket = io.connect(window.location.href);
  socket.on('greet', function (data) {
    console.log(data);
    socket.emit('respond', { message: 'Hey there, server!' });
  });

});

And we are done!

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.

const name = require('module-name');
const { foo, bar } = require('module-name');

To export functions, objects, or primitives from a given file or module.

module.exports = { myFunction };
module.exports.name = 'yourName';
module.exports = 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 two 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++;
  }
}

🎁 Credits: DuckDuckGo and @DrkSephy.

🔝 back to top

JavaScript Date Cheatsheet

Unix Timestamp (seconds)

Math.floor(Date.now() / 1000);
moment().unix();

Add 30 minutes to a Date object

var now = new Date();
now.setMinutes(now.getMinutes() + 30);
moment().add(30, 'minutes');

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
console.log(moment(new Date(), 'MM-DD-YYYY'));
// 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
console.log(moment(new Date(), 'hh:mm A'));

Next week Date object

var today = new Date();
var nextWeek = new Date(today.getTime() + 7 * 24 * 60 * 60 * 1000);
moment().add(7, 'days');

Yesterday Date object

var today = new Date();
var yesterday = date.setDate(date.getDate() - 1);
moment().add(-1, 'days');

🔝 back to top

Mongoose Cheatsheet

Find all users:

User.find((err, users) => {
  console.log(users);
});

Find a user by email:

let userEmail = '[email protected]';
User.findOne({ email: userEmail }, (err, user) => {
  console.log(user);
});

Find 5 most recent user accounts:

User
  .find()
  .sort({ _id: -1 })
  .limit(5)
  .exec((err, users) => {
    console.log(users);
  });

Get the total count of a field from all documents:

Let's suppose that each user has a votes field and you would like to count the total number of votes in your database across all users. One very inefficient way would be to loop through each document and manually accumulate the count. Or you could use MongoDB Aggregation Framework instead:

User.aggregate({ $group: { _id: null, total: { $sum: '$votes' } } }, (err, votesCount)  => {
  console.log(votesCount.total);
});

🔝 back to top

Docker

You will need to install docker and docker-compose on your system. If you are using WSL, you will need to install Docker Desktop on Windows and docker-compose on WSL.

After installing docker, start the application with the following commands :

# To build the project while supressing most of the build messages
docker-compose build web

# To build the project without supressing the build messages or using cached data
 docker-compose build --no-cache --progress=plain web

# To start the application (or to restart after making changes to the source code)
docker-compose up web

To view the app, find your docker IP address + port 8080 ( this will typically be http://localhost:8080/ ). To use a port other than 8080, you would need to modify the port in app.js, Dockerfile, and docker-compose.yml.

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, but they are my top picks. Additionally, you can create an account with MongoDB Atlas and then pick one of the providers below. Again, there are plenty of other choices, and you are not limited to just the ones listed below.

Deployment to Render

Render provides free nodejs hosting for repos on Github and Gitlab.

  • Sign up for a free Individual account at https://render.com
  • Link your Github account
  • Create a Web Service
  • Add your repo and add your environment variables under the Advanced settings. Note 1: The automated deployments may not work, and you may need to manually trigger deployments after your commits.

Hosted MongoDB Atlas

  • Go to https://www.mongodb.com/cloud/atlas
  • Click the green Get started free button
  • Fill in your information then hit Get started free
  • You will be redirected to Create New Cluster page.
  • Select a Cloud Provider and Region (such as AWS and a free tier region)
  • Select cluster Tier to Free forever Shared Cluster
  • Give Cluster a name (default: Cluster0)
  • Click on green ⚡Create Cluster button
  • Now, to access your database you need to create a DB user. To create a new MongoDB user, from the Clusters view, select the Security tab
  • Under the MongoDB Users tab, click on +Add New User
  • Fill in a username and password and give it either Atlas Admin User Privilege
  • Next, you will need to create an IP address whitelist and obtain the connection URI. In the Clusters view, under the cluster details (i.e. SANDBOX - Cluster0), click on the CONNECT button.
  • Under section (1) Check the IP Whitelist, click on ALLOW ACCESS FROM ANYWHERE. The form will add a field with 0.0.0.0/0. Click SAVE to save the 0.0.0.0/0 whitelist.
  • Under section (2) Choose a connection method, click on Connect Your Application
  • In the new screen, select Node.js as Driver and version 3.6 or later.
  • Finally, copy the URI connection string and replace the URI in MONGODB_URI of .env.example with this URI string. Make sure to replace the with the db User password that you created under the Security tab.
  • Note that after some of the steps in the Atlas UI, you may see a banner stating We are deploying your changes. You will need to wait for the deployment to finish before using the DB in your application.

OpenShift

**NOTE** *These instructions might be out of date due to changes in OpenShift. Render is currently a good free alternative. If you know the new process, please feel free to help us update this page*
  • First, install this Ruby gem: sudo gem install rhc 💎
  • Run rhc login and enter your OpenShift credentials
  • From your app directory run rhc app create MyApp nodejs-0.10
  • Note: MyApp is the name of your app (no spaces)
  • Once that is done, you will be provided with URL, SSH and Git Remote links
  • Visit provided URL, and you should see the Welcome to your Node.js application on OpenShift page
  • Copy and paste Git Remote into git remote add openshift YOUR_GIT_REMOTE
  • Before you push your app, you need to do a few modifications to your code

Add these two lines to app.js, just place them anywhere before app.listen():

var IP_ADDRESS = process.env.OPENSHIFT_NODEJS_IP || '127.0.0.1';
var PORT = process.env.OPENSHIFT_NODEJS_PORT || 8080;

Then change app.listen() to:

app.listen(PORT, IP_ADDRESS,() => {
  console.log(`Express server listening on port ${PORT} in ${app.settings.env} mode`);
});

Add this to package.json, after name and version. This is necessary because, by default, OpenShift looks for server.js file. And by specifying supervisor app.js it will automatically restart the server when node.js process crashes.

"main": "app.js",
"scripts": {
  "start": "supervisor app.js"
},
  • Finally, you can now push your code to OpenShift by running git push -f openshift master
  • Note: The first time you run this command, you have to pass -f (force) flag because OpenShift creates a dummy server with the welcome page when you create a new Node.js app. Passing -f flag will override everything with your Hackathon Starter project repository. Do not run git pull as it will create unnecessary merge conflicts.
  • And you are done!

Azure

**NOTE** *Beyond the initial 12 month trial of Azure, the platform does not seem to offer a free tier for hosting NodeJS apps. If you are looking for a free tier service to host your app, Render might be a better choice at this point*
  • Login to Windows Azure Management Portal
  • Click the + NEW button on the bottom left of the portal
  • Click COMPUTE, then WEB APP, then QUICK CREATE
  • Enter a name for URL and select the datacenter REGION for your web site
  • Click on CREATE WEB APP button
  • Once the web site status changes to Running, click on the name of the web site to access the Dashboard
  • At the bottom right of the Quickstart page, select Set up a deployment from source control
  • Select Local Git repository from the list, and then click the arrow
  • To enable Git publishing, Azure will ask you to create a user name and password
  • Once the Git repository is ready, you will be presented with a GIT URL
  • Inside your Hackathon Starter directory, run git remote add azure [Azure Git URL]
  • To push your changes run git push azure master
  • Note: You will be prompted for the password you created earlier
  • On Deployments tab of your Windows Azure Web App, you will see the deployment history

IBM Bluemix Cloud Platform

NOTE At this point it appears that Bluemix's free tier to host NodeJS apps is limited to 30 days. If you are looking for a free tier service to host your app, Render might be a better choice at this point

  • Create a Bluemix Account

    Sign up for Bluemix, or use an existing account.

  • Download and install the Cloud Foundry CLI to push your applications to Bluemix.

  • Create a manifest.yml file in the root of your application.

applications:
- name:      <your-app-name>
  host:      <your-app-host>
  memory:    128M
  services:
  - myMongo-db-name

The host you use will determinate your application URL initially, e.g. <host>.mybluemix.net. The service name 'myMongo-db-name' is a declaration of your MongoDB service. If you are using other services like Watson for example, then you would declare them the same way.

  • Connect and login to Bluemix via the Cloud-foundry CLI
$ cf login -a https://api.ng.bluemix.net
$ cf create-service mongodb 100 [your-service-name]

Note: this is a free and experiment verion of MongoDB instance. Use the MongoDB by Compose instance for production applications:

$ cf create-service compose-for-mongodb Standard [your-service-name]'
  • Push the application

    $ cf push
    
    $ cf env <your-app-name >
    (To view the *environment variables* created for your application)
    
    

Done, now go to the staging domain (<host>.mybluemix.net) and see your app running.

IBM Watson

Be sure to check out the full list of Watson services to forwarder enhance your application functionality with a little effort. Watson services are easy to get going; it is simply a RESTful API call. Here is an example of a Watson Toner Analyzer to understand the emotional context of a piece of text that you send to Watson.

Watson catalog of services

Virtual Assistant - Deliver consistent and intelligent customer care across all channels and touchpoints with conversational AI.

Natural Language Understanding - Analyze text to extract meta-data from content such as concepts, entities, keywords and more.

Discovery - Accelerate business decisions and processes with an AI-powered intelligent document understanding and content analysis platform.

Orchestrate - Hand off tedious tasks to Watson and never work the same way again.

List of Watson Services.


Google Cloud Platform

  • Download and install Node.js

  • Select or create a Google Cloud Platform Console project

  • Enable billing for your project (there's a $300 free trial)

  • Install and initialize the Google Cloud SDK

  • Create an app.yaml file at the root of your hackathon-starter folder with the following contents:

    runtime: nodejs
    env: flex
    manual_scaling:
      instances: 1
  • Make sure you've set MONGODB_URI in .env.example

  • Run the following command to deploy the hackathon-starter app:

    gcloud app deploy
  • Monitor your deployed app in the Cloud Console

  • View the logs for your app in the Cloud Console

Production

If you are starting with this boilerplate to build an application for prod deployment, or if after your hackathon you would like to get your project hardened for production use, see prod-checklist.md.

Changelog

You can find the changelog for the project in: CHANGELOG.md

Contributing

If something is unclear, confusing, or needs to be refactored, please let me know. Pull requests are always welcome, but due to the opinionated nature of this project, I cannot accept every pull request. Please open an issue before submitting a pull request. This project uses Airbnb JavaScript Style Guide with a few minor exceptions. If you are submitting a pull request that involves Pug templates, please make sure you are using spaces, not tabs.

License

The MIT License (MIT)

Copyright (c) 2014-2023 Sahat Yalkabov

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.

sahat/hackathon-starter

{
"props": {
"initialPayload": {
"allShortcutsEnabled": false,
"path": "/",
"repo": {
"id": 14370955,
"defaultBranch": "master",
"name": "hackathon-starter",
"ownerLogin": "sahat",
"currentUserCanPush": false,
"isFork": false,
"isEmpty": false,
"createdAt": "2013-11-13T17:24:12.000Z",
"ownerAvatar": "https://avatars.githubusercontent.com/u/544954?v=4",
"public": true,
"private": false,
"isOrgOwned": false
},
"currentUser": null,
"refInfo": {
"name": "master",
"listCacheKey": "v0:1690594157.0",
"canEdit": false,
"refType": "branch",
"currentOid": "ed7f82d8f80426ab7eb267fb15601668bec993a8"
},
"tree": {
"items": [
{
"name": ".github/workflows",
"path": ".github/workflows",
"contentType": "directory",
"hasSimplifiedPath": true
},
{
"name": ".husky",
"path": ".husky",
"contentType": "directory"
},
{
"name": "config",
"path": "config",
"contentType": "directory"
},
{
"name": "controllers",
"path": "controllers",
"contentType": "directory"
},
{
"name": "models",
"path": "models",
"contentType": "directory"
},
{
"name": "patches",
"path": "patches",
"contentType": "directory"
},
{
"name": "public",
"path": "public",
"contentType": "directory"
},
{
"name": "test",
"path": "test",
"contentType": "directory"
},
{
"name": "views",
"path": "views",
"contentType": "directory"
},
{
"name": ".dockerignore",
"path": ".dockerignore",
"contentType": "file"
},
{
"name": ".env.example",
"path": ".env.example",
"contentType": "file"
},
{
"name": ".eslintrc",
"path": ".eslintrc",
"contentType": "file"
},
{
"name": ".gitignore",
"path": ".gitignore",
"contentType": "file"
},
{
"name": "CHANGELOG.md",
"path": "CHANGELOG.md",
"contentType": "file"
},
{
"name": "Dockerfile",
"path": "Dockerfile",
"contentType": "file"
},
{
"name": "LICENSE",
"path": "LICENSE",
"contentType": "file"
},
{
"name": "README.md",
"path": "README.md",
"contentType": "file"
},
{
"name": "SECURITY.md",
"path": "SECURITY.md",
"contentType": "file"
},
{
"name": "app.js",
"path": "app.js",
"contentType": "file"
},
{
"name": "docker-compose.yml",
"path": "docker-compose.yml",
"contentType": "file"
},
{
"name": "package-lock.json",
"path": "package-lock.json",
"contentType": "file"
},
{
"name": "package.json",
"path": "package.json",
"contentType": "file"
},
{
"name": "prod-checklist.md",
"path": "prod-checklist.md",
"contentType": "file"
}
],
"templateDirectorySuggestionUrl": null,
"readme": null,
"totalCount": 23,
"showBranchInfobar": false
},
"fileTree": null,
"fileTreeProcessingTime": null,
"foldersToFetch": [],
"treeExpanded": false,
"symbolsExpanded": false,
"isOverview": true,
"overview": {
"banners": {
"shouldRecommendReadme": false,
"isPersonalRepo": false,
"showUseActionBanner": false,
"actionSlug": null,
"actionId": null,
"showProtectBranchBanner": false,
"publishBannersInfo": {
"dismissActionNoticePath": "/settings/dismiss-notice/publish_action_from_repo",
"releasePath": "/sahat/hackathon-starter/releases/new?marketplace=true",
"showPublishActionBanner": false
},
"interactionLimitBanner": null,
"showInvitationBanner": false,
"inviterName": null
},
"codeButton": {
"contactPath": "/contact",
"isEnterprise": false,
"local": {
"protocolInfo": {
"httpAvailable": true,
"sshAvailable": null,
"httpUrl": "https://github.com/sahat/hackathon-starter.git",
"showCloneWarning": null,
"sshUrl": null,
"sshCertificatesRequired": null,
"sshCertificatesAvailable": null,
"ghCliUrl": "gh repo clone sahat/hackathon-starter",
"defaultProtocol": "http",
"newSshKeyUrl": "/settings/ssh/new",
"setProtocolPath": "/users/set_protocol"
},
"platformInfo": {
"cloneUrl": "https://desktop.github.com",
"showVisualStudioCloneButton": false,
"visualStudioCloneUrl": "https://windows.github.com",
"showXcodeCloneButton": false,
"xcodeCloneUrl": "https://developer.apple.com",
"zipballUrl": "/sahat/hackathon-starter/archive/refs/heads/master.zip"
}
},
"newCodespacePath": "/codespaces/new?hide_repo_select=true&repo=14370955"
},
"popovers": {
"rename": null,
"renamedParentRepo": null
},
"commitCount": "2,640",
"overviewFiles": [
{
"displayName": "README.md",
"repoName": "hackathon-starter",
"refName": "master",
"path": "README.md",
"preferredFileType": "readme",
"tabName": "README",
"richText": "<article class=\"markdown-body entry-content container-lg\" itemprop=\"text\"><div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/3960d32ca186fdb805a427d92b982b04c284a0acbc099535031636405435874f/68747470733a2f2f6c68342e676f6f676c6575736572636f6e74656e742e636f6d2f2d5056772d5a554d397656382f557557654835316f7330492f414141414141414144364d2f30496b673776694a6674512f77313238362d683536362d6e6f2f6861636b6174686f6e2d737461727465722d6c6f676f2e6a7067\"><img src=\"https://camo.githubusercontent.com/3960d32ca186fdb805a427d92b982b04c284a0acbc099535031636405435874f/68747470733a2f2f6c68342e676f6f676c6575736572636f6e74656e742e636f6d2f2d5056772d5a554d397656382f557557654835316f7330492f414141414141414144364d2f30496b673776694a6674512f77313238362d683536362d6e6f2f6861636b6174686f6e2d737461727465722d6c6f676f2e6a7067\" alt=\"\" data-canonical-src=\"https://lh4.googleusercontent.com/-PVw-ZUM9vV8/UuWeH51os0I/AAAAAAAAD6M/0Ikg7viJftQ/w1286-h566-no/hackathon-starter-logo.jpg\" style=\"max-width: 100%;\"></a>\nHackathon Starter</h1><a id=\"user-content-hackathon-starter\" class=\"anchor\" aria-label=\"Permalink: \nHackathon Starter\" href=\"#hackathon-starter\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><strong>Live Demo</strong>: <a href=\"https://hackathon-starter-1.ydftech.com/\" rel=\"nofollow\">Link</a></p>\n<p dir=\"auto\">Jump to <a href=\"https://github.com/sahat/hackathon-starter/blob/master/CHANGELOG.md\">What's new?</a></p>\n<p dir=\"auto\">A boilerplate for <strong>Node.js</strong> web applications.</p>\n<p dir=\"auto\">If you have attended any hackathons in the past, then you know how much time it takes to get a project started: decide on what to build, pick a programming language, pick a web framework, pick a CSS framework. A while later, you might have an initial project up on GitHub, and only then can other team members start contributing. Or how about doing something as simple as <em>Sign in with Facebook</em> authentication? You can spend hours on it if you are not familiar with how OAuth 2.0 works.</p>\n<p dir=\"auto\">When I started this project, my primary focus was on <strong>simplicity</strong> and <strong>ease of use</strong>.\nI also tried to make it as <strong>generic</strong> and <strong>reusable</strong> as possible to cover most use cases of hackathon web apps, without being too specific. In the worst case, you can use this as a learning guide for your projects, if for example you are only interested in <strong>Sign in with Google</strong> authentication and nothing else.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Testimonials</h3><a id=\"user-content-testimonials\" class=\"anchor\" aria-label=\"Permalink: Testimonials\" href=\"#testimonials\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<blockquote>\n<p dir=\"auto\"><a href=\"https://www.producthunt.com/tech/hackathon-starter#comment-224732\" rel=\"nofollow\"><strong>“Nice! That README alone is already gold!”</strong></a><br>\n— Adrian Le Bas</p>\n</blockquote>\n<blockquote>\n<p dir=\"auto\"><a href=\"https://www.producthunt.com/tech/hackathon-starter#comment-224966\" rel=\"nofollow\"><strong>“Awesome. Simply awesome.”</strong></a><br>\n— Steven Rueter</p>\n</blockquote>\n<blockquote>\n<p dir=\"auto\"><a href=\"https://www.producthunt.com/tech/hackathon-starter#comment-228610\" rel=\"nofollow\"><strong>“I'm using it for a year now and many projects, it's an awesome boilerplate and the project is well maintained!”</strong></a><br>\n— Kevin Granger</p>\n</blockquote>\n<blockquote>\n<p dir=\"auto\"><strong>“Small world with Sahat's project. We were using his hackathon starter for our hackathon this past weekend and got some prizes. Really handy repo!”</strong><br>\n— Interview candidate for one of the companies I used to work with.</p>\n</blockquote>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 align=\"center\" tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Modern Theme</h4><a id=\"user-content-modern-theme\" class=\"anchor\" aria-label=\"Permalink: Modern Theme\" href=\"#modern-theme\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/8a8568700b704ea4b0aefdd546a8c1ac8369f6c9681ef7892ed29228f9616e89/68747470733a2f2f6c68362e676f6f676c6575736572636f6e74656e742e636f6d2f2d4b51546d43464e4b364d4d2f55374f5a707a6e6a4475492f41414141414141414552632f68336a5232375579316c452f77313336362d68313030362d6e6f2f53637265656e73686f742b323031342d30372d30322b30312e33322e32322e706e67\"><img src=\"https://camo.githubusercontent.com/8a8568700b704ea4b0aefdd546a8c1ac8369f6c9681ef7892ed29228f9616e89/68747470733a2f2f6c68362e676f6f676c6575736572636f6e74656e742e636f6d2f2d4b51546d43464e4b364d4d2f55374f5a707a6e6a4475492f41414141414141414552632f68336a5232375579316c452f77313336362d68313030362d6e6f2f53637265656e73686f742b323031342d30372d30322b30312e33322e32322e706e67\" alt=\"\" data-canonical-src=\"https://lh6.googleusercontent.com/-KQTmCFNK6MM/U7OZpznjDuI/AAAAAAAAERc/h3jR27Uy1lE/w1366-h1006-no/Screenshot+2014-07-02+01.32.22.png\" style=\"max-width: 100%;\"></a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 align=\"center\" tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Flatly Bootstrap Theme</h4><a id=\"user-content-flatly-bootstrap-theme\" class=\"anchor\" aria-label=\"Permalink: Flatly Bootstrap Theme\" href=\"#flatly-bootstrap-theme\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/f27ce92c1dbf7eb67e0465fce503e46faf84ce9bbcfe11916c733cd1f5dd9f25/68747470733a2f2f6c68352e676f6f676c6575736572636f6e74656e742e636f6d2f2d6f4a2d37625359697352592f5531612d57684b5f4c6f492f414141414141414145434d2f6130346656596765667a772f77313437342d68313039382d6e6f2f53637265656e2b53686f742b323031342d30342d32322b61742b332e30382e33332b504d2e706e67\"><img src=\"https://camo.githubusercontent.com/f27ce92c1dbf7eb67e0465fce503e46faf84ce9bbcfe11916c733cd1f5dd9f25/68747470733a2f2f6c68352e676f6f676c6575736572636f6e74656e742e636f6d2f2d6f4a2d37625359697352592f5531612d57684b5f4c6f492f414141414141414145434d2f6130346656596765667a772f77313437342d68313039382d6e6f2f53637265656e2b53686f742b323031342d30342d32322b61742b332e30382e33332b504d2e706e67\" alt=\"\" data-canonical-src=\"https://lh5.googleusercontent.com/-oJ-7bSYisRY/U1a-WhK_LoI/AAAAAAAAECM/a04fVYgefzw/w1474-h1098-no/Screen+Shot+2014-04-22+at+3.08.33+PM.png\" style=\"max-width: 100%;\"></a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 align=\"center\" tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">API Examples</h4><a id=\"user-content-api-examples\" class=\"anchor\" aria-label=\"Permalink: API Examples\" href=\"#api-examples\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/c5abb44e63262a114330dec2b57d31eae0f139ffc53a68b965a783e6c9ed8c5d/68747470733a2f2f6c68352e676f6f676c6575736572636f6e74656e742e636f6d2f2d424a4432774b38437643382f564c6f644273794c2d4e492f41414141414141414578302f53616645366f5f71715f492f77313831382d68313138362d6e6f2f53637265656e73686f74253242323031352d30312d313725324230302e32352e34392e706e67\"><img src=\"https://camo.githubusercontent.com/c5abb44e63262a114330dec2b57d31eae0f139ffc53a68b965a783e6c9ed8c5d/68747470733a2f2f6c68352e676f6f676c6575736572636f6e74656e742e636f6d2f2d424a4432774b38437643382f564c6f644273794c2d4e492f41414141414141414578302f53616645366f5f71715f492f77313831382d68313138362d6e6f2f53637265656e73686f74253242323031352d30312d313725324230302e32352e34392e706e67\" alt=\"\" data-canonical-src=\"https://lh5.googleusercontent.com/-BJD2wK8CvC8/VLodBsyL-NI/AAAAAAAAEx0/SafE6o_qq_I/w1818-h1186-no/Screenshot%2B2015-01-17%2B00.25.49.png\" style=\"max-width: 100%;\"></a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Table of Contents</h2><a id=\"user-content-table-of-contents\" class=\"anchor\" aria-label=\"Permalink: Table of Contents\" href=\"#table-of-contents\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li><a href=\"#features\">Features</a></li>\n<li><a href=\"#prerequisites\">Prerequisites</a></li>\n<li><a href=\"#getting-started\">Getting Started</a></li>\n<li><a href=\"#obtaining-api-keys\">Obtaining API Keys</a></li>\n<li><a href=\"#project-structure\">Project Structure</a></li>\n<li><a href=\"#list-of-packages\">List of Packages</a></li>\n<li><a href=\"#useful-tools-and-resources\">Useful Tools and Resources</a></li>\n<li><a href=\"#recommended-design-resources\">Recommended Design Resources</a></li>\n<li><a href=\"#recommended-nodejs-libraries\">Recommended Node.js Libraries</a></li>\n<li><a href=\"#recommended-client-side-libraries\">Recommended Client-side Libraries</a></li>\n<li><a href=\"#pro-tips\">Pro Tips</a></li>\n<li><a href=\"#faq\">FAQ</a></li>\n<li><a href=\"#how-it-works-mini-guides\">How It Works</a></li>\n<li><a href=\"#cheatsheets\">Cheatsheets</a>\n<ul dir=\"auto\">\n<li><a href=\"#-es6-cheatsheet\">ES6</a></li>\n<li><a href=\"#-javascript-date-cheatsheet\">JavaScript Date</a></li>\n<li><a href=\"#mongoose-cheatsheet\">Mongoose Cheatsheet</a></li>\n</ul>\n</li>\n<li><a href=\"#deployment\">Deployment</a></li>\n<li><a href=\"#docker\">Docker</a></li>\n<li><a href=\"#production\">Production</a></li>\n<li><a href=\"#changelog\">Changelog</a></li>\n<li><a href=\"#contributing\">Contributing</a></li>\n<li><a href=\"#license\">License</a></li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Features</h2><a id=\"user-content-features\" class=\"anchor\" aria-label=\"Permalink: Features\" href=\"#features\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li>Login\n<ul dir=\"auto\">\n<li><strong>Local Authentication</strong> using Email and Password</li>\n<li><strong>OAuth 2.0 Authentication:</strong> Sign in with Google, Facebook, X (Twitter), LinkedIn, Twitch, Github, Snapchat</li>\n</ul>\n</li>\n<li><strong>User Profile and Account Management</strong>\n<ul dir=\"auto\">\n<li>Gravatar</li>\n<li>Profile Details</li>\n<li>Change Password</li>\n<li>Forgot Password</li>\n<li>Reset Password</li>\n<li>Verify Email</li>\n<li>Link multiple OAuth strategies to one account</li>\n<li>Delete Account</li>\n</ul>\n</li>\n<li>Contact Form (powered by SMTP via Sendgrid, Mailgun, AWS SES, etc.)</li>\n<li>File upload</li>\n<li><strong>API Examples</strong>\n<ul dir=\"auto\">\n<li>Facebook, Foursquare, Tumblr, Pinterest, Github, Steam, Quickbooks, Paypal, Stripe, Twilio (text messaging), Lob (USPS Mail), HERE Maps, Google Maps, Google Drive, Google Sheets, Alpha Vantage (stocks and finance info) with ChartJS, Last.fm, New York Times, Web Scraping,</li>\n</ul>\n</li>\n<li>Flash notifications</li>\n<li>\n<ul dir=\"auto\">\n<li>reCaPTCHA and rate limit protection</li>\n</ul>\n</li>\n<li>CSRF protection</li>\n<li>MVC Project Structure</li>\n<li>Node.js clusters support</li>\n<li>HTTPS Proxy support (via ngrok, Cloudflare, etc.)</li>\n<li>Sass stylesheets (auto-compiled via middleware)</li>\n<li>Bootstrap 5</li>\n<li>\"Go to production\" checklist</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Prerequisites</h2><a id=\"user-content-prerequisites\" class=\"anchor\" aria-label=\"Permalink: Prerequisites\" href=\"#prerequisites\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li>\n<p dir=\"auto\">MongoDB (local install OR hosted)</p>\n<ul dir=\"auto\">\n<li>Local Install: <a href=\"https://www.mongodb.com/download-center/community\" rel=\"nofollow\">MongoDB</a></li>\n<li>Hosted: No need to install, see the MongoDB Atlas section</li>\n</ul>\n</li>\n<li>\n<p dir=\"auto\"><a href=\"http://nodejs.org\" rel=\"nofollow\">Node.js 18+</a></p>\n</li>\n<li>\n<p dir=\"auto\">Command Line Tools</p>\n</li>\n<li>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/e65f2fe95236872e1caabf26a1eb5a470114c2196febdc92f710d531223fca8c/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f312f31622f4170706c655f6c6f676f5f677265792e737667\"><img src=\"https://camo.githubusercontent.com/e65f2fe95236872e1caabf26a1eb5a470114c2196febdc92f710d531223fca8c/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f312f31622f4170706c655f6c6f676f5f677265792e737667\" height=\"17\" data-canonical-src=\"https://upload.wikimedia.org/wikipedia/commons/1/1b/Apple_logo_grey.svg\" style=\"max-width: 100%;\"></a> <strong>Mac OS X:</strong> <a href=\"https://itunes.apple.com/us/app/xcode/id497799835?mt=12\" rel=\"nofollow\">Xcode</a> (or <strong>OS X 10.9+</strong>: <code>xcode-select --install</code>)</p>\n</li>\n<li>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/e4f694b874aaaccef7ccb4d92ecacb8c9b9450cb3a19860fbcaf984238eb8888/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f382f38372f57696e646f77735f6c6f676f5f2d5f323032312e737667\"><img src=\"https://camo.githubusercontent.com/e4f694b874aaaccef7ccb4d92ecacb8c9b9450cb3a19860fbcaf984238eb8888/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f382f38372f57696e646f77735f6c6f676f5f2d5f323032312e737667\" height=\"17\" data-canonical-src=\"https://upload.wikimedia.org/wikipedia/commons/8/87/Windows_logo_-_2021.svg\" style=\"max-width: 100%;\"></a> <strong>Windows:</strong> <a href=\"https://code.visualstudio.com\" rel=\"nofollow\">Visual Studio Code</a> + <a href=\"https://docs.microsoft.com/en-us/windows/wsl/install-win10\" rel=\"nofollow\">Windows Subsystem for Linux - Ubuntu</a> OR <a href=\"https://www.visualstudio.com/products/visual-studio-community-vs\" rel=\"nofollow\">Visual Studio</a></p>\n</li>\n<li>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/b2d48593b1ae31f9304a830473df68eee935d623f8e3c5e8b8fe4632f7b053c7/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f392f39652f5562756e7475436f462e7376672f35313270782d5562756e7475436f462e7376672e706e673f3230313230323130303732353235\"><img src=\"https://camo.githubusercontent.com/b2d48593b1ae31f9304a830473df68eee935d623f8e3c5e8b8fe4632f7b053c7/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f392f39652f5562756e7475436f462e7376672f35313270782d5562756e7475436f462e7376672e706e673f3230313230323130303732353235\" height=\"17\" data-canonical-src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/UbuntuCoF.svg/512px-UbuntuCoF.svg.png?20120210072525\" style=\"max-width: 100%;\"></a> <strong>Ubuntu</strong> / <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/673fe22269e7485e33387f6221585b1423346340bb01a6cf55f5ce5ca5fae01f/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f332f33662f4c696e75785f4d696e745f6c6f676f5f776974686f75745f776f72646d61726b2e737667\"><img src=\"https://camo.githubusercontent.com/673fe22269e7485e33387f6221585b1423346340bb01a6cf55f5ce5ca5fae01f/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f332f33662f4c696e75785f4d696e745f6c6f676f5f776974686f75745f776f72646d61726b2e737667\" height=\"17\" data-canonical-src=\"https://upload.wikimedia.org/wikipedia/commons/3/3f/Linux_Mint_logo_without_wordmark.svg\" style=\"max-width: 100%;\"></a> <strong>Linux Mint:</strong> <code>sudo apt-get install build-essential</code></p>\n</li>\n<li>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/e3e316fb4d66f108d5414a6f562226e8aca24c8e87924d36dc0d62718f9e2c9c/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f332f33662f4665646f72615f6c6f676f2e737667\"><img src=\"https://camo.githubusercontent.com/e3e316fb4d66f108d5414a6f562226e8aca24c8e87924d36dc0d62718f9e2c9c/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f332f33662f4665646f72615f6c6f676f2e737667\" height=\"17\" data-canonical-src=\"https://upload.wikimedia.org/wikipedia/commons/3/3f/Fedora_logo.svg\" style=\"max-width: 100%;\"></a> <strong>Fedora</strong>: <code>sudo dnf groupinstall \"Development Tools\"</code></p>\n</li>\n<li>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/4d6aada699d4451091da4aad9d2242adcddffc03a7031e247d9edc842232aa35/68747470733a2f2f656e2e6f70656e737573652e6f72672f696d616765732f622f62652f4c6f676f2d6765656b6f5f686561642e706e67\"><img src=\"https://camo.githubusercontent.com/4d6aada699d4451091da4aad9d2242adcddffc03a7031e247d9edc842232aa35/68747470733a2f2f656e2e6f70656e737573652e6f72672f696d616765732f622f62652f4c6f676f2d6765656b6f5f686561642e706e67\" height=\"17\" data-canonical-src=\"https://en.opensuse.org/images/b/be/Logo-geeko_head.png\" style=\"max-width: 100%;\"></a> <strong>OpenSUSE:</strong> <code>sudo zypper install --type pattern devel_basis</code></p>\n</li>\n</ul>\n<p dir=\"auto\"><strong>Note:</strong> If you are new to Node or Express, you may find <a href=\"https://www.youtube.com/watch?v=Ad2ngx6CT0M&amp;list=PLillGF-RfqbYRpji8t4SxUkMxfowG4Kqp&amp;index=3\" rel=\"nofollow\">Node.js &amp; Express From Scratch series</a> helpful for learning the basics of Node and Express. Alternatively, here is another great tutorial for complete beginners - <a href=\"https://www.freecodecamp.org/news/build-a-restful-api-using-node-express-and-mongodb/\" rel=\"nofollow\">Getting Started With Node.js, Express, MongoDB</a>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Getting Started</h2><a id=\"user-content-getting-started\" class=\"anchor\" aria-label=\"Permalink: Getting Started\" href=\"#getting-started\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><strong>Step 1:</strong> The easiest way to get started is to clone the repository:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"# Get the latest snapshot\ngit clone https://github.com/sahat/hackathon-starter.git myproject\n\n# Change directory\ncd myproject\n\n# Install NPM dependencies\nnpm install\n\n# Then simply start your app\nnode app.js\"><pre><span class=\"pl-c\"><span class=\"pl-c\">#</span> Get the latest snapshot</span>\ngit clone https://github.com/sahat/hackathon-starter.git myproject\n\n<span class=\"pl-c\"><span class=\"pl-c\">#</span> Change directory</span>\n<span class=\"pl-c1\">cd</span> myproject\n\n<span class=\"pl-c\"><span class=\"pl-c\">#</span> Install NPM dependencies</span>\nnpm install\n\n<span class=\"pl-c\"><span class=\"pl-c\">#</span> Then simply start your app</span>\nnode app.js</pre></div>\n<p dir=\"auto\"><strong>Note:</strong> I highly recommend installing <a href=\"https://github.com/remy/nodemon\">Nodemon</a>. It watches for any changes in your node.js app and automatically restarts the server. Once installed, instead of <code>node app.js</code> use <code>nodemon app.js</code>. It will\nsave you a lot of time in the long run, because you won't need to manually restart the server each time you make a small change in code. To install, run <code>sudo npm install -g nodemon</code>.</p>\n<p dir=\"auto\"><strong>Step 2:</strong> Obtain API Keys and change configs if needed\nAfter completing step 1 and locally installing MongoDB, you should be able to access the application through a web browser and use local user accounts. However, certain functions like API integrations may not function correctly until you obtain specific keys from service providers. The keys provided in the project serve as placeholders, and you can retain them for features you are not currently utilizing. To incorporate the acquired keys into the application, you have two options:</p>\n<ol dir=\"auto\">\n<li>Set environment variables in your console session: Alternatively, you can set the keys as environment variables directly through the command prompt. For instance, in bash, you can use the <code>export</code> command like this: <code>export FACEBOOK_SECRET=xxxxxx</code>. This method is considered a better practice as it reduces the risk of accidentally including your secrets in a code repository.</li>\n<li>Replace the keys in the <code>.env.example</code> file: Open the <code>.env.example</code> file and update the placeholder keys with the newly acquired ones. This method has the risk of accidental checking-in of your secrets to code repos.</li>\n</ol>\n<p dir=\"auto\"><em>What to get and configure:</em></p>\n<ul dir=\"auto\">\n<li>\n<p dir=\"auto\">SMTP</p>\n<ul dir=\"auto\">\n<li>For user workflows for reset password and verify email</li>\n<li>For contact form processing</li>\n</ul>\n</li>\n<li>\n<p dir=\"auto\">reCAPTCHA</p>\n<ul dir=\"auto\">\n<li>For contact form submission</li>\n</ul>\n</li>\n<li>\n<p dir=\"auto\">OAuth for social logins (Sign in with / Login with)</p>\n<ul dir=\"auto\">\n<li>Depending on your application need, obtain keys from Google, Facebook, X (Twitter), LinkedIn, Twitch, GitHub, Snapchat. You don't have to obtain valid keys for any provider that you don't need. Just remove the buttons and links in the login and account pug views before your demo.</li>\n</ul>\n</li>\n<li>\n<p dir=\"auto\">API keys for service providers in the API Examples if you are planning to use them.</p>\n</li>\n<li>\n<p dir=\"auto\">MongoDB Atlas</p>\n<ul dir=\"auto\">\n<li>If you are using MongoDB Atlas instead of a local db, set the MONGODB_URI to your db URI (including your db user/password).</li>\n</ul>\n</li>\n<li>\n<p dir=\"auto\">Email address</p>\n<ul dir=\"auto\">\n<li>Set SITE_CONTACT_EMAIL as your incoming email address for messages sent to you thru the contact form.</li>\n<li>Set TRANSACTION_EMAIL as the \"From\" address for emails sent to users thru the lost password or email verification emails to users. You may set this to the same address as SITE_CONTACT_EMAIL.</li>\n</ul>\n</li>\n<li>\n<p dir=\"auto\">ngrok and HTTPS\nIf you want to use some API that needs HTTPS to work (for example Pinterest or Facebook),\nyou will need to download <a href=\"https://ngrok.com/\" rel=\"nofollow\">ngrok</a>. Start ngrok, set your BASE_URL to the forwarding address (i.e <code>https://3ccb-1234-abcd.ngrok-free.app</code> ), and use the forwarding address to access your application. If you are using a proxy like ngrok, you may get a CSRF mismatch error if you try to access the app at <code>http://localhost:8080</code> instead of the https://...ngrok-free.app address.</p>\n<p dir=\"auto\">After installing or downloading the standalone ngrok client you can start ngrok to intercept the data exchanged on port 8080 with <code>./ngrok http 8080</code> in Linux or <code>ngrok http 8080</code> in Windows.</p>\n</li>\n</ul>\n<p dir=\"auto\"><strong>Step 3:</strong> Develop your application and customize the experience</p>\n<ul dir=\"auto\">\n<li>Check out <a href=\"#how-it-works-mini-guides\">How It Works</a></li>\n</ul>\n<p dir=\"auto\"><strong>Step 4:</strong> Optional - deploy to production\nSee:</p>\n<ul dir=\"auto\">\n<li><a href=\"#deployment\">Deployment</a></li>\n<li><a href=\"https://github.com/sahat/hackathon-starter/blob/master/prod-checklist.md\">prod-checklist.md</a></li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Obtaining API Keys</h1><a id=\"user-content-obtaining-api-keys\" class=\"anchor\" aria-label=\"Permalink: Obtaining API Keys\" href=\"#obtaining-api-keys\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You will need to obtain appropriate credentials (Client ID, Client Secret, API Key, or Username &amp; Password) for API and service provides which you need. See Step 2 in the Getting started section for more info.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">SMTP</h2><a id=\"user-content-smtp\" class=\"anchor\" aria-label=\"Permalink: SMTP\" href=\"#smtp\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Obtain SMTP credentials from a provider for transactional emails. Set the SMTP_USER, SMTP_PASSWORD, and SMTP_HOST environment variables accordingly. When picking the smtp host, keep in mind that the app is configured to use secure SMTP transmissions over port 465 out of the box. You have the flexibility to select any provider that suits your needs or take advantage of one of the following providers, each offering a free tier for your convenience.</p>\n<markdown-accessiblity-table><table>\n<thead>\n<tr>\n<th>Provider</th>\n<th>Free Tier</th>\n<th>Website</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SendGrid</td>\n<td>100 emails/day for free</td>\n<td><a href=\"https://sendgrid.com\" rel=\"nofollow\">https://sendgrid.com</a></td>\n</tr>\n<tr>\n<td>SMTP2Go</td>\n<td>1000 emails/month for free</td>\n<td><a href=\"https://www.smtp2go.com\" rel=\"nofollow\">https://www.smtp2go.com</a></td>\n</tr>\n<tr>\n<td>Brevo</td>\n<td>300 emails/day for free</td>\n<td><a href=\"https://www.brevo.com\" rel=\"nofollow\">https://www.brevo.com</a></td>\n</tr>\n</tbody>\n</table></markdown-accessiblity-table>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/9fb45e79dcc8e7c04dec7107cbb0fa29ac376944d401ad006f21ddf8be02ed61/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f612f61642f5265636170746368614c6f676f2e7376672f32303070782d5265636170746368614c6f676f2e7376672e706e67\"><img src=\"https://camo.githubusercontent.com/9fb45e79dcc8e7c04dec7107cbb0fa29ac376944d401ad006f21ddf8be02ed61/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f612f61642f5265636170746368614c6f676f2e7376672f32303070782d5265636170746368614c6f676f2e7376672e706e67\" width=\"200\" data-canonical-src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/RecaptchaLogo.svg/200px-RecaptchaLogo.svg.png\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Visit <a href=\"https://www.google.com/recaptcha/admin\" rel=\"nofollow\">Google reCAPTCHA Admin Console</a></li>\n<li>Enter your application's name as the <strong>Label</strong></li>\n<li>Choose <strong>reCAPTCHA v2</strong>, <strong>\"I'm not a robot\" Checkbox</strong></li>\n<li>Enter <em>localhost</em> as the domain. You can have other domains added in addition to <em>localhost</em></li>\n<li>Accept the terms and submit the form</li>\n<li>Copy the <em>Site Key</em> and the <em>Secret key</em> into <code>.env</code>. These keys will be accessible under Settings, reCAPTCHA keys drop down if you need them again later</li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/8ee80b8203bb0d7a4431a2ab1bb718373ae27ad554a98c664c3b4608997f5d81/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f322f32662f476f6f676c655f323031355f6c6f676f2e7376672f3130303070782d476f6f676c655f323031355f6c6f676f2e7376672e706e67\"><img src=\"https://camo.githubusercontent.com/8ee80b8203bb0d7a4431a2ab1bb718373ae27ad554a98c664c3b4608997f5d81/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f322f32662f476f6f676c655f323031355f6c6f676f2e7376672f3130303070782d476f6f676c655f323031355f6c6f676f2e7376672e706e67\" width=\"200\" data-canonical-src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Google_2015_logo.svg/1000px-Google_2015_logo.svg.png\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Visit <a href=\"https://cloud.google.com/console/project\" rel=\"nofollow\">Google Cloud Console</a></li>\n<li>Click on the <strong>Create Project</strong> button</li>\n<li>Enter <em>Project Name</em>, then click on <strong>Create</strong> button</li>\n<li>Then click on <em>APIs &amp; auth</em> in the sidebar and select <em>API</em> tab</li>\n<li>Click on <strong>Google+ API</strong> under <em>Social APIs</em>, then click <strong>Enable API</strong></li>\n<li>Click on <strong>Google Drive API</strong> under <em>G Suite</em>, then click <strong>Enable API</strong></li>\n<li>Click on <strong>Google Sheets API</strong> under <em>G Suite</em>, then click <strong>Enable API</strong></li>\n<li>Next, under <em>APIs &amp; auth</em> in the sidebar click on <em>Credentials</em> tab</li>\n<li>Click on <strong>Create new Client ID</strong> button</li>\n<li>Select <em>Web Application</em> and click on <strong>Configure Consent Screen</strong></li>\n<li>Fill out the required fields then click on <strong>Save</strong></li>\n<li>In the <em>Create Client ID</em> modal dialog:</li>\n<li><strong>Application Type</strong>: Web Application</li>\n<li><strong>Authorized Javascript origins</strong>: set to your BASE_URL value (i.e. <code>http://localhost:8080</code>, etc)</li>\n<li><strong>Authorized redirect URI</strong>: set to your BASE_URL value followed by /auth/google/callback (i.e. <code>http://localhost:8080/auth/google/callback</code> )</li>\n<li>Click on <strong>Create Client ID</strong> button</li>\n<li>Copy and paste <em>Client ID</em> and <em>Client secret</em> keys into <code>.env</code></li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/16131e78fedb430b51c4d94c15f41521f79d9e83bca37a8a18865df6165d88ac/68747470733a2f2f7365656b6c6f676f2e636f6d2f696d616765732f532f736e6170636861742d6c6f676f2d463230434442313139392d7365656b6c6f676f2e636f6d2e706e67\"><img src=\"https://camo.githubusercontent.com/16131e78fedb430b51c4d94c15f41521f79d9e83bca37a8a18865df6165d88ac/68747470733a2f2f7365656b6c6f676f2e636f6d2f696d616765732f532f736e6170636861742d6c6f676f2d463230434442313139392d7365656b6c6f676f2e636f6d2e706e67\" height=\"90\" data-canonical-src=\"https://seeklogo.com/images/S/snapchat-logo-F20CDB1199-seeklogo.com.png\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Visit <a href=\"https://kit.snapchat.com/portal\" rel=\"nofollow\">Snap Kit Developer Portal</a></li>\n<li>Click on the <strong>+</strong> button to create an app</li>\n<li>Enter a name for your app</li>\n<li>Enable the scopes that you will want to use in your app</li>\n<li>Click on the <strong>Continue</strong> button</li>\n<li>Find the <strong>Kits</strong> section and make sure that <strong>Login Kit</strong> is enabled</li>\n<li>Find the <strong>Redirect URLs</strong> section, click the <strong>+ Add</strong> button, and enter your BASE_URL value followed by /auth/snapchat/callback (i.e. <code>http://localhost:8080/auth/snapchat/callback</code> )</li>\n<li>Find the <strong>Development Environment</strong> section. Click the <strong>Generate</strong> button next to the <em>Confidential OAuth2 Client</em> heading within it.</li>\n<li>Copy and paste the generated <em>Private Key</em> and <em>OAuth2 Client ID</em> keys into <code>.env</code></li>\n<li><strong>Note:</strong> <em>OAuth2 Client ID</em> is <strong>SNAPCHAT_ID</strong>, <em>Private Key</em> is <strong>SNAPCHAT_SECRET</strong> in <code>.env</code></li>\n<li>To prepare the app for submission, fill out the rest of the required fields: <em>Category</em>, <em>Description</em>, <em>Privacy Policy Url</em>, and <em>App Icon</em></li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/d0822c4a5e0ef4523d88610e4d3beaf1b7cdb02748d3d100cc75694b91d25e5e/68747470733a2f2f656e2e66616365626f6f6b6272616e642e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031392f30342f665f6c6f676f5f5247422d4865782d426c75655f3531322e706e67\"><img src=\"https://camo.githubusercontent.com/d0822c4a5e0ef4523d88610e4d3beaf1b7cdb02748d3d100cc75694b91d25e5e/68747470733a2f2f656e2e66616365626f6f6b6272616e642e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031392f30342f665f6c6f676f5f5247422d4865782d426c75655f3531322e706e67\" width=\"90\" data-canonical-src=\"https://en.facebookbrand.com/wp-content/uploads/2019/04/f_logo_RGB-Hex-Blue_512.png\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Visit <a href=\"https://developers.facebook.com/\" rel=\"nofollow\">Facebook Developers</a></li>\n<li>Click <strong>My Apps</strong>, then select *<em>Add a New App</em> from the dropdown menu</li>\n<li>Enter a new name for your app</li>\n<li>Click on the <strong>Create App ID</strong> button</li>\n<li>Find the Facebook Login Product and click on <strong>Facebook Login</strong></li>\n<li>Instead of going through their Quickstart, click on <strong>Settings</strong> for your app in the top left corner</li>\n<li>Copy and paste <em>App ID</em> and <em>App Secret</em> keys into <code>.env</code></li>\n<li><strong>Note:</strong> <em>App ID</em> is <strong>FACEBOOK_ID</strong>, <em>App Secret</em> is <strong>FACEBOOK_SECRET</strong> in <code>.env</code></li>\n<li>Enter <code>localhost</code> under <em>App Domains</em></li>\n<li>Choose a <strong>Category</strong> that best describes your app</li>\n<li>Click on <strong>+ Add Platform</strong> and select <strong>Website</strong></li>\n<li>Enter your BASE_URL value (i.e. <code>http://localhost:8080</code>, etc) under <em>Site URL</em></li>\n<li>Click on the <em>Settings</em> tab in the left nav under Facebook Login</li>\n<li>Enter your BASE_URL value followed by /auth/facebook/callback (i.e. <code>http://localhost:8080/auth/facebook/callback</code> ) under Valid OAuth redirect URIs</li>\n</ul>\n<p dir=\"auto\"><strong>Note:</strong> After a successful sign-in with Facebook, a user will be redirected back to the home page with appended hash <code>#_=_</code> in the URL. It is <em>not</em> a bug. See this <a href=\"https://stackoverflow.com/questions/7131909/facebook-callback-appends-to-return-url\" rel=\"nofollow\">Stack Overflow</a> discussion for ways to handle it.</p>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/f9402256fa0a205bac735a8f49413e4965f38a6508228192e1a21f56306bc5e0/68747470733a2f2f6769746875622e6769746875626173736574732e636f6d2f696d616765732f6d6f64756c65732f6c6f676f735f706167652f4f63746f6361742e706e67\"><img src=\"https://camo.githubusercontent.com/f9402256fa0a205bac735a8f49413e4965f38a6508228192e1a21f56306bc5e0/68747470733a2f2f6769746875622e6769746875626173736574732e636f6d2f696d616765732f6d6f64756c65732f6c6f676f735f706167652f4f63746f6361742e706e67\" width=\"110\" data-canonical-src=\"https://github.githubassets.com/images/modules/logos_page/Octocat.png\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Go to <a href=\"https://github.com/settings/profile\">Account Settings</a></li>\n<li>Select <strong>Developer settings</strong> from the sidebar</li>\n<li>Then click on <strong>OAuth Apps</strong> and then on <strong>Register new application</strong></li>\n<li>Enter <em>Application Name</em> and <em>Homepage URL</em>. Enter your BASE_URL value (i.e. <code>http://localhost:8080</code>, etc) as the homepage URL.</li>\n<li>For <em>Authorization Callback URL</em>: your BASE_URL value followed by /auth/github/callback (i.e. <code>http://localhost:8080/auth/github/callback</code> )</li>\n<li>Click <strong>Register application</strong></li>\n<li>Now copy and paste <em>Client ID</em> and <em>Client Secret</em> keys into <code>.env</code> file</li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/17011e5b1bd5bdd53e453301bbb71104228c09c175407e45d9188f434c3f25f6/68747470733a2f2f692e696d6775722e636f6d2f566c71667637612e6a7067\"><img src=\"https://camo.githubusercontent.com/17011e5b1bd5bdd53e453301bbb71104228c09c175407e45d9188f434c3f25f6/68747470733a2f2f692e696d6775722e636f6d2f566c71667637612e6a7067\" width=\"90\" data-canonical-src=\"https://i.imgur.com/Vlqfv7a.jpg\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Sign in at <a href=\"https://apps.twitter.com/\" rel=\"nofollow\"></a><a href=\"https://apps.twitter.com\" rel=\"nofollow\">https://apps.twitter.com</a></li>\n<li>Click <strong>Create a new application</strong></li>\n<li>Enter your application name, website and description. Set the website as your BASE_URL value (i.e. <code>http://localhost:8080</code>, etc).</li>\n<li>For <strong>Callback URL</strong>: your BASE_URL value followed by /auth/twitter/callback (i.e. <code>http://localhost:8080/auth/twitter/callback</code> )</li>\n<li>Go to <strong>Settings</strong> tab</li>\n<li>Under <em>Application Type</em> select <strong>Read and Write</strong> access</li>\n<li>Check the box <strong>Allow this application to be used to Sign in with Twitter</strong></li>\n<li>Click <strong>Update this Twitter's applications settings</strong></li>\n<li>Copy and paste <em>Consumer Key</em> and <em>Consumer Secret</em> keys into <code>.env</code> file</li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/aa06c2b5482102bbebe5d41cfab69c1e83b0c1c3beb2c3aac6baad71ef9b623b/68747470733a2f2f636f6e74656e742e6c696e6b6564696e2e636f6d2f636f6e74656e742f64616d2f6d652f627573696e6573732f656e2d75732f616d702f6272616e642d736974652f76322f62672f4c492d4c6f676f2e7376672e6f726967696e616c2e737667\"><img src=\"https://camo.githubusercontent.com/aa06c2b5482102bbebe5d41cfab69c1e83b0c1c3beb2c3aac6baad71ef9b623b/68747470733a2f2f636f6e74656e742e6c696e6b6564696e2e636f6d2f636f6e74656e742f64616d2f6d652f627573696e6573732f656e2d75732f616d702f6272616e642d736974652f76322f62672f4c492d4c6f676f2e7376672e6f726967696e616c2e737667\" width=\"200\" data-canonical-src=\"https://content.linkedin.com/content/dam/me/business/en-us/amp/brand-site/v2/bg/LI-Logo.svg.original.svg\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Sign in at <a href=\"https://developer.linkedin.com/\" rel=\"nofollow\">LinkedIn Developer Network</a></li>\n<li>From the account name dropdown menu select <strong>API Keys</strong></li>\n<li><em>It may ask you to sign in once again</em></li>\n<li>Click <strong>+ Add New Application</strong> button</li>\n<li>Fill out all the <em>required</em> fields</li>\n<li><strong>OAuth 2.0 Redirect URLs</strong>: your BASE_URL value followed by /auth/linkedin/callback (i.e. <code>http://localhost:8080/auth/linkedin/callback</code> )</li>\n<li><strong>JavaScript API Domains</strong>: your BASE_URL value (i.e. <code>http://localhost:8080</code>, etc).</li>\n<li>For <strong>Default Application Permissions</strong> make sure at least the following is checked:</li>\n<li><code>r_basicprofile</code></li>\n<li>Finish by clicking <strong>Add Application</strong> button</li>\n<li>Copy and paste <em>API Key</em> and <em>Secret Key</em> keys into <code>.env</code> file</li>\n<li><em>API Key</em> is your <strong>clientID</strong></li>\n<li><em>Secret Key</em> is your <strong>clientSecret</strong></li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/27d4c6582359d39d20842ced740d832a5efc7bb13084c2aa26c8f94a728cdc8e/68747470733a2f2f7374726970652e636f6d2f696d672f61626f75742f6c6f676f732f6c6f676f732f626c61636b4032782e706e67\"><img src=\"https://camo.githubusercontent.com/27d4c6582359d39d20842ced740d832a5efc7bb13084c2aa26c8f94a728cdc8e/68747470733a2f2f7374726970652e636f6d2f696d672f61626f75742f6c6f676f732f6c6f676f732f626c61636b4032782e706e67\" width=\"180\" data-canonical-src=\"https://stripe.com/img/about/logos/logos/[email protected]\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li><a href=\"https://stripe.com/\" rel=\"nofollow\">Sign up</a> or log into your <a href=\"https://manage.stripe.com\" rel=\"nofollow\">dashboard</a></li>\n<li>Click on your profile and click on Account Settings</li>\n<li>Then click on <strong>API Keys</strong></li>\n<li>Copy the <strong>Secret Key</strong>. and add this into <code>.env</code> file</li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/010fbd2f4c1195404636e8c373e3dad1fc52fdd830efefb7b0c07fa6dcee59ae/68747470733a2f2f7777772e70617970616c6f626a656374732e636f6d2f7765627374617469632f6d6b74672f6c6f676f2f70705f63635f6d61726b5f3131317836392e6a7067\"><img src=\"https://camo.githubusercontent.com/010fbd2f4c1195404636e8c373e3dad1fc52fdd830efefb7b0c07fa6dcee59ae/68747470733a2f2f7777772e70617970616c6f626a656374732e636f6d2f7765627374617469632f6d6b74672f6c6f676f2f70705f63635f6d61726b5f3131317836392e6a7067\" width=\"150\" data-canonical-src=\"https://www.paypalobjects.com/webstatic/mktg/logo/pp_cc_mark_111x69.jpg\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Visit <a href=\"https://developer.paypal.com\" rel=\"nofollow\">PayPal Developer</a></li>\n<li>Log in to your PayPal account</li>\n<li>Click <strong>Applications &gt; Create App</strong> in the navigation bar</li>\n<li>Enter <em>Application Name</em>, then click <strong>Create app</strong></li>\n<li>Copy and paste <em>Client ID</em> and <em>Secret</em> keys into <code>.env</code> file</li>\n<li><em>App ID</em> is <strong>client_id</strong>, <em>App Secret</em> is <strong>client_secret</strong></li>\n<li>Change <strong>host</strong> to api.paypal.com if you want to test against production and use the live credentials</li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/92fd10653aa85508c247f73d386699dce86e4fcdd3b9f0bed2ea90f1bb230924/687474703a2f2f33332e6d656469612e74756d626c722e636f6d2f66666166303037356265383739623361623062383766306238626363363831342f74756d626c725f696e6c696e655f6e393635626b4f796d7231717a786867612e706e67\"><img src=\"https://camo.githubusercontent.com/92fd10653aa85508c247f73d386699dce86e4fcdd3b9f0bed2ea90f1bb230924/687474703a2f2f33332e6d656469612e74756d626c722e636f6d2f66666166303037356265383739623361623062383766306238626363363831342f74756d626c725f696e6c696e655f6e393635626b4f796d7231717a786867612e706e67\" width=\"200\" data-canonical-src=\"http://33.media.tumblr.com/ffaf0075be879b3ab0b87f0b8bcc6814/tumblr_inline_n965bkOymr1qzxhga.png\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Go to <a href=\"https://developer.foursquare.com\" rel=\"nofollow\">Foursquare for Developers</a></li>\n<li>Click on <strong>My Apps</strong> in the top menu</li>\n<li>Click the <strong>Create A New App</strong> button</li>\n<li>Enter <em>App Name</em>, <em>Welcome page url</em>,</li>\n<li>For <strong>Redirect URI</strong>: your BASE_URL value followed by /auth/foursquare/callback (i.e. <code>http://localhost:8080/auth/foursquare/callback</code> )</li>\n<li>Click <strong>Save Changes</strong></li>\n<li>Copy and paste <em>Client ID</em> and <em>Client Secret</em> keys into <code>.env</code> file</li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/5d0e7c42e9fb78c09e39868cd09312fef3df06252355903852d81a25ed69e5a8/68747470733a2f2f692e696d6775722e636f6d2f6f4d4b723639562e706e67\"><img src=\"https://camo.githubusercontent.com/5d0e7c42e9fb78c09e39868cd09312fef3df06252355903852d81a25ed69e5a8/68747470733a2f2f692e696d6775722e636f6d2f6f4d4b723639562e706e67\" width=\"200\" data-canonical-src=\"https://i.imgur.com/oMKr69V.png\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Go to <a href=\"http://www.tumblr.com/oauth/apps\" rel=\"nofollow\"></a><a href=\"http://www.tumblr.com/oauth/apps\" rel=\"nofollow\">http://www.tumblr.com/oauth/apps</a></li>\n<li>Once signed in, click <strong>+Register application</strong></li>\n<li>Fill in all the details</li>\n<li>For <strong>Default Callback URL</strong>: your BASE_URL value followed by /auth/tumblr/callback (i.e. <code>http://localhost:8080/auth/tumblr/callback</code> )</li>\n<li>Click <strong>✔Register</strong></li>\n<li>Copy and paste <em>OAuth consumer key</em> and <em>OAuth consumer secret</em> keys into <code>.env</code> file</li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/de8cb1f8cc7039540790cc255a775d7def3472660e716de867f63b50b60ebb49/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f612f61652f537465616d5f6c6f676f2e737667\"><img src=\"https://camo.githubusercontent.com/de8cb1f8cc7039540790cc255a775d7def3472660e716de867f63b50b60ebb49/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f612f61652f537465616d5f6c6f676f2e737667\" width=\"200\" data-canonical-src=\"https://upload.wikimedia.org/wikipedia/commons/a/ae/Steam_logo.svg\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Go to <a href=\"http://steamcommunity.com/dev/apikey\" rel=\"nofollow\"></a><a href=\"http://steamcommunity.com/dev/apikey\" rel=\"nofollow\">http://steamcommunity.com/dev/apikey</a></li>\n<li>Sign in with your existing Steam account</li>\n<li>Enter your <em>Domain Name</em> based on your BASE_URL, then and click <strong>Register</strong></li>\n<li>Copy and paste <em>Key</em> into <code>.env</code> file</li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/1d03c017399529fa316b49d969a077d8dfabe48ffa3519324f65fa9f21eaf268/68747470733a2f2f7777772e66726565706e676c6f676f732e636f6d2f75706c6f6164732f7477697463682d6c6f676f2d696d6167652d68642d33312e706e67\"><img src=\"https://camo.githubusercontent.com/1d03c017399529fa316b49d969a077d8dfabe48ffa3519324f65fa9f21eaf268/68747470733a2f2f7777772e66726565706e676c6f676f732e636f6d2f75706c6f6164732f7477697463682d6c6f676f2d696d6167652d68642d33312e706e67\" height=\"90\" data-canonical-src=\"https://www.freepnglogos.com/uploads/twitch-logo-image-hd-31.png\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Visit the <a href=\"https://dev.twitch.tv/dashboard/apps\" rel=\"nofollow\">Twitch developer dashboard</a></li>\n<li>If prompted, authorize the dashboard to access your twitch account</li>\n<li>In the Console, click on Register Your Application</li>\n<li>Enter the name of your application</li>\n<li>Use OAuth Redirect URLs enter your BASE_URL value followed by /auth/twitch/callback (i.e. <code>http://localhost:8080/auth/twitch/callback</code> )</li>\n<li>Set Category to Website Integration and press the Create button</li>\n<li>After the application has been created, click on the Manage button</li>\n<li>Copy and paste <em>Client ID</em> into <code>.env</code></li>\n<li>If there is no Client Secret displayed, click on the New Secret button and then copy and paste the <em>Client secret</em> into <code>.env</code></li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/2ddb295aac1de0ff0c90d7fd2a09467e1bca70f3614d5ceb83bd77070d87682b/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f632f63372f484552455f6c6f676f2e737667\"><img src=\"https://camo.githubusercontent.com/2ddb295aac1de0ff0c90d7fd2a09467e1bca70f3614d5ceb83bd77070d87682b/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f632f63372f484552455f6c6f676f2e737667\" width=\"90\" data-canonical-src=\"https://upload.wikimedia.org/wikipedia/commons/c/c7/HERE_logo.svg\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Go to <a href=\"https://developer.here.com\" rel=\"nofollow\"></a><a href=\"https://developer.here.com\" rel=\"nofollow\">https://developer.here.com</a></li>\n<li>Sign up and create a Freemium project</li>\n<li>Create JAVASCRIPT/REST credentials. Copy and paste the APP_ID and APP into <code>.env</code> file.</li>\n<li>Note that these credentials are available on the client-side, and you need to create a domain whitelist for your app credentials when you are publicly launching the app.</li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/bca5f9bd0b573ba8853bdf50e1a24135ffa3fec03aa9c4fe3f8538552a901310/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f61686f792d6173736574732e7477696c696f2e636f6d2f676c6f62616c2f696d616765732f776f72646d61726b2e737667\"><img src=\"https://camo.githubusercontent.com/bca5f9bd0b573ba8853bdf50e1a24135ffa3fec03aa9c4fe3f8538552a901310/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f61686f792d6173736574732e7477696c696f2e636f6d2f676c6f62616c2f696d616765732f776f72646d61726b2e737667\" width=\"200\" data-canonical-src=\"https://s3.amazonaws.com/ahoy-assets.twilio.com/global/images/wordmark.svg\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Go to <a href=\"https://www.twilio.com/try-twilio\" rel=\"nofollow\"></a><a href=\"https://www.twilio.com/try-twilio\" rel=\"nofollow\">https://www.twilio.com/try-twilio</a></li>\n<li>Sign up for an account.</li>\n<li>Once logged into the dashboard, expand the link 'show api credentials'</li>\n<li>Copy your Account Sid and Auth Token</li>\n</ul>\n<hr>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/ac04e969d9be2833d022915616772123ccf3ce419b91e94ceda2e5f1e0c8dbdf/68747470733a2f2f7777772e696e747569742e636f6d2f636f6e74656e742f64616d2f696e747569742f696e74756974636f6d2f636f6d70616e792f696d616765732f6c6f676f2d696e747569742d717569636b626f6f6b732d7072656665727265642e706e67\"><img src=\"https://camo.githubusercontent.com/ac04e969d9be2833d022915616772123ccf3ce419b91e94ceda2e5f1e0c8dbdf/68747470733a2f2f7777772e696e747569742e636f6d2f636f6e74656e742f64616d2f696e747569742f696e74756974636f6d2f636f6d70616e792f696d616765732f6c6f676f2d696e747569742d717569636b626f6f6b732d7072656665727265642e706e67\" width=\"200\" data-canonical-src=\"https://www.intuit.com/content/dam/intuit/intuitcom/company/images/logo-intuit-quickbooks-preferred.png\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Go to <a href=\"https://developer.intuit.com/app/developer/qbo/docs/get-started\" rel=\"nofollow\"></a><a href=\"https://developer.intuit.com/app/developer/qbo/docs/get-started\" rel=\"nofollow\">https://developer.intuit.com/app/developer/qbo/docs/get-started</a></li>\n<li>Use the Sign Up option in the upper right corner of the screen (navbar) to get a free developer account and a sandbox company.</li>\n<li>Create a new app by going to your Dashboard using the My Apps option in the top nav bar or by going to <a href=\"https://developer.intuit.com/app/developer/myapps\" rel=\"nofollow\"></a><a href=\"https://developer.intuit.com/app/developer/myapps\" rel=\"nofollow\">https://developer.intuit.com/app/developer/myapps</a></li>\n<li>In your App, under Development, Keys &amp; OAuth (right nav), find the Client ID and Client Secret for your <code>.env</code> file</li>\n</ul>\n<hr>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Project Structure</h2><a id=\"user-content-project-structure\" class=\"anchor\" aria-label=\"Permalink: Project Structure\" href=\"#project-structure\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<markdown-accessiblity-table><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>config</strong>/passport.js</td>\n<td>Passport Local and OAuth strategies, plus login middleware.</td>\n</tr>\n<tr>\n<td><strong>controllers</strong>/api.js</td>\n<td>Controller for /api route and all api examples.</td>\n</tr>\n<tr>\n<td><strong>controllers</strong>/contact.js</td>\n<td>Controller for contact form.</td>\n</tr>\n<tr>\n<td><strong>controllers</strong>/home.js</td>\n<td>Controller for home page (index).</td>\n</tr>\n<tr>\n<td><strong>controllers</strong>/user.js</td>\n<td>Controller for user account management.</td>\n</tr>\n<tr>\n<td><strong>models</strong>/User.js</td>\n<td>Mongoose schema and model for User.</td>\n</tr>\n<tr>\n<td><strong>public</strong>/</td>\n<td>Static assets (fonts, css, js, img).</td>\n</tr>\n<tr>\n<td><strong>public</strong>/<strong>js</strong>/application.js</td>\n<td>Specify client-side JavaScript dependencies.</td>\n</tr>\n<tr>\n<td><strong>public</strong>/<strong>js</strong>/app.js</td>\n<td>Place your client-side JavaScript here.</td>\n</tr>\n<tr>\n<td><strong>public</strong>/<strong>css</strong>/main.scss</td>\n<td>Main stylesheet for your app.</td>\n</tr>\n<tr>\n<td><strong>views/account</strong>/</td>\n<td>Templates for <em>login, password reset, signup, profile</em>.</td>\n</tr>\n<tr>\n<td><strong>views/api</strong>/</td>\n<td>Templates for API Examples.</td>\n</tr>\n<tr>\n<td><strong>views/partials</strong>/flash.pug</td>\n<td>Error, info and success flash notifications.</td>\n</tr>\n<tr>\n<td><strong>views/partials</strong>/header.pug</td>\n<td>Navbar partial template.</td>\n</tr>\n<tr>\n<td><strong>views/partials</strong>/footer.pug</td>\n<td>Footer partial template.</td>\n</tr>\n<tr>\n<td><strong>views</strong>/layout.pug</td>\n<td>Base template.</td>\n</tr>\n<tr>\n<td><strong>views</strong>/home.pug</td>\n<td>Home page template.</td>\n</tr>\n<tr>\n<td>.dockerignore</td>\n<td>Folder and files ignored by docker usage.</td>\n</tr>\n<tr>\n<td>.env.example</td>\n<td>Your API keys, tokens, passwords and database URI.</td>\n</tr>\n<tr>\n<td>.eslintrc</td>\n<td>Rules for eslint linter.</td>\n</tr>\n<tr>\n<td>.gitignore</td>\n<td>Folder and files ignored by git.</td>\n</tr>\n<tr>\n<td>app.js</td>\n<td>The main application file.</td>\n</tr>\n<tr>\n<td>docker-compose.yml</td>\n<td>Docker compose configuration file.</td>\n</tr>\n<tr>\n<td>Dockerfile</td>\n<td>Docker configuration file.</td>\n</tr>\n<tr>\n<td>package.json</td>\n<td>NPM dependencies.</td>\n</tr>\n<tr>\n<td>package-lock.json</td>\n<td>Contains exact versions of NPM dependencies in package.json.</td>\n</tr>\n</tbody>\n</table></markdown-accessiblity-table>\n<p dir=\"auto\"><strong>Note:</strong> There is no preference for how you name or structure your views.\nYou could place all your templates in a top-level <code>views</code> directory without\nhaving a nested folder structure if that makes things easier for you.\nJust don't forget to update <code>extends ../layout</code> and corresponding\n<code>res.render()</code> paths in controllers.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">List of Packages</h2><a id=\"user-content-list-of-packages\" class=\"anchor\" aria-label=\"Permalink: List of Packages\" href=\"#list-of-packages\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<markdown-accessiblity-table><table>\n<thead>\n<tr>\n<th>Package</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>@fortawesome/fontawesome-free</td>\n<td>Symbol and Icon library.</td>\n</tr>\n<tr>\n<td>@googleapis/drive</td>\n<td>Google Drive API integration library.</td>\n</tr>\n<tr>\n<td>@googleapis/sheets</td>\n<td>Google Sheets API integration library.</td>\n</tr>\n<tr>\n<td>@ladjs/bootstrap-social</td>\n<td>Social buttons library.</td>\n</tr>\n<tr>\n<td>@lob/lob-typescript-sdk</td>\n<td>Lob (USPS mailing / physical mailing service) library.</td>\n</tr>\n<tr>\n<td>@node-rs/bcrypt</td>\n<td>Library for hashing and salting user passwords.</td>\n</tr>\n<tr>\n<td>@octokit/rest</td>\n<td>GitHub API library.</td>\n</tr>\n<tr>\n<td>@passport-js/passport-twitter</td>\n<td>X (Twitter) login support (OAuth 2).</td>\n</tr>\n<tr>\n<td>@popperjs/core</td>\n<td>Frontend js library for poppers and tooltips.</td>\n</tr>\n<tr>\n<td>axios</td>\n<td>HTTP client.</td>\n</tr>\n<tr>\n<td>body-parser</td>\n<td>Node.js body parsing middleware.</td>\n</tr>\n<tr>\n<td>bootstrap</td>\n<td>CSS Framework.</td>\n</tr>\n<tr>\n<td>chai</td>\n<td>BDD/TDD assertion library.</td>\n</tr>\n<tr>\n<td>cheerio</td>\n<td>Scrape web pages using jQuery-style syntax.</td>\n</tr>\n<tr>\n<td>compression</td>\n<td>Node.js compression middleware.</td>\n</tr>\n<tr>\n<td>connect-mongo</td>\n<td>MongoDB session store for Express.</td>\n</tr>\n<tr>\n<td>dotenv</td>\n<td>Loads environment variables from .env file.</td>\n</tr>\n<tr>\n<td>errorhandler</td>\n<td>Development-only error handler middleware.</td>\n</tr>\n<tr>\n<td>eslint</td>\n<td>Linter JavaScript.</td>\n</tr>\n<tr>\n<td>eslint-config-airbnb-base</td>\n<td>Configuration eslint by airbnb.</td>\n</tr>\n<tr>\n<td>eslint-plugin-chai-friendly</td>\n<td>Makes eslint friendly towards Chai.js 'expect' and 'should' statements.</td>\n</tr>\n<tr>\n<td>eslint-plugin-import</td>\n<td>ESLint plugin with rules that help validate proper imports.</td>\n</tr>\n<tr>\n<td>express</td>\n<td>Node.js web framework.</td>\n</tr>\n<tr>\n<td>express-flash</td>\n<td>Provides flash messages for Express.</td>\n</tr>\n<tr>\n<td>express-rate-limit</td>\n<td>Rate limiting middleware for abuse protection.</td>\n</tr>\n<tr>\n<td>express-session</td>\n<td>Simple session middleware for Express.</td>\n</tr>\n<tr>\n<td>husky</td>\n<td>Git hook manager to automate tasks with git.</td>\n</tr>\n<tr>\n<td>jquery</td>\n<td>Front-end JS library to interact with HTML elements.</td>\n</tr>\n<tr>\n<td>lastfm</td>\n<td>Last.fm API library.</td>\n</tr>\n<tr>\n<td>lint-stage</td>\n<td>Utility to lint files staged by git.</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>Lob API library.</td>\n</tr>\n<tr>\n<td>lodash</td>\n<td>A utility library for working with arrays, numbers, objects, strings.</td>\n</tr>\n<tr>\n<td>lusca</td>\n<td>CSRF middleware.</td>\n</tr>\n<tr>\n<td>mailchecker</td>\n<td>Verifies that an email address is valid and not a disposable address.</td>\n</tr>\n<tr>\n<td>mocha</td>\n<td>Test framework.</td>\n</tr>\n<tr>\n<td>moment</td>\n<td>Parse, validate, compute dates and times.</td>\n</tr>\n<tr>\n<td>mongodbMemoryServer</td>\n<td>MongoDB in memory (for running tests without a running db).</td>\n</tr>\n<tr>\n<td>mongoose</td>\n<td>MongoDB ODM.</td>\n</tr>\n<tr>\n<td>morgan</td>\n<td>HTTP request logger middleware for node.js.</td>\n</tr>\n<tr>\n<td>multer</td>\n<td>Node.js middleware for handling <code>multipart/form-data</code>.</td>\n</tr>\n<tr>\n<td>nodemailer</td>\n<td>Node.js library for sending emails.</td>\n</tr>\n<tr>\n<td>nyc</td>\n<td>Coverage test.</td>\n</tr>\n<tr>\n<td>passport</td>\n<td>Simple and elegant authentication library for node.js.</td>\n</tr>\n<tr>\n<td>passport-facebook</td>\n<td>Sign-in with Facebook plugin.</td>\n</tr>\n<tr>\n<td>passport-github2</td>\n<td>Sign-in with GitHub plugin.</td>\n</tr>\n<tr>\n<td>passport-google-oauth</td>\n<td>Sign-in with Google plugin.</td>\n</tr>\n<tr>\n<td>passport-linkedin-oauth2</td>\n<td>Sign-in with LinkedIn plugin.</td>\n</tr>\n<tr>\n<td>passport-local</td>\n<td>Sign-in with Username and Password plugin.</td>\n</tr>\n<tr>\n<td>passport-oauth</td>\n<td>Allows you to set up your own OAuth 1.0a and OAuth 2.0 strategies.</td>\n</tr>\n<tr>\n<td>passport-oauth2-refresh</td>\n<td>A library to refresh OAuth 2.0 access tokens using refresh tokens.</td>\n</tr>\n<tr>\n<td>passport-snapchat</td>\n<td>Sign-in with Snapchat plugin.</td>\n</tr>\n<tr>\n<td>passport-steam-openid</td>\n<td>OpenID 2.0 Steam plugin.</td>\n</tr>\n<tr>\n<td>patch-package</td>\n<td>Fix broken node modules ahead of fixes by maintainers.</td>\n</tr>\n<tr>\n<td>paypal-rest-sdk</td>\n<td>PayPal APIs library.</td>\n</tr>\n<tr>\n<td>pug</td>\n<td>Template engine for Express.</td>\n</tr>\n<tr>\n<td>sass</td>\n<td>Sass compiler to generate CSS with superpowers</td>\n</tr>\n<tr>\n<td>sinon</td>\n<td>Test spies, stubs and mocks for JavaScript.</td>\n</tr>\n<tr>\n<td>stripe</td>\n<td>Offical Stripe API library.</td>\n</tr>\n<tr>\n<td>supertest</td>\n<td>HTTP assertion library.</td>\n</tr>\n<tr>\n<td>twilio</td>\n<td>Twilio API library.</td>\n</tr>\n<tr>\n<td>twitch-passport</td>\n<td>Sign-in with Twitch plugin.</td>\n</tr>\n<tr>\n<td>validator</td>\n<td>A library of string validators and sanitizers.</td>\n</tr>\n</tbody>\n</table></markdown-accessiblity-table>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Useful Tools and Resources</h2><a id=\"user-content-useful-tools-and-resources\" class=\"anchor\" aria-label=\"Permalink: Useful Tools and Resources\" href=\"#useful-tools-and-resources\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li><a href=\"http://www.javascripting.com/\" rel=\"nofollow\">JavaScripting</a> - The Database of JavaScript Libraries</li>\n<li><a href=\"https://html-to-pug.com/\" rel=\"nofollow\">HTML to Pug converter</a> - HTML to PUG is a free online converter helping you to convert HTML files to pug syntax in real-time.</li>\n<li><a href=\"http://www.javascriptoo.com/\" rel=\"nofollow\">JavascriptOO</a> - A directory of JavaScript libraries with examples, CDN links, statistics, and videos.</li>\n<li><a href=\"http://realfavicongenerator.net/\" rel=\"nofollow\">Favicon Generator</a> - Generate favicons for PC, Android, iOS, Windows 8.</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Recommended Design Resources</h2><a id=\"user-content-recommended-design-resources\" class=\"anchor\" aria-label=\"Permalink: Recommended Design Resources\" href=\"#recommended-design-resources\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li><a href=\"http://codeguide.co/\" rel=\"nofollow\">Code Guide</a> - Standards for developing flexible, durable, and sustainable HTML and CSS.</li>\n<li><a href=\"http://bootsnipp.com/\" rel=\"nofollow\">Bootsnipp</a> - Code snippets for Bootstrap.</li>\n<li><a href=\"https://www.bootstrapzero.com\" rel=\"nofollow\">Bootstrap Zero</a> - Free Bootstrap templates themes.</li>\n<li><a href=\"http://todc.github.io/todc-bootstrap/\" rel=\"nofollow\">Google Bootstrap</a> - Google-styled theme for Bootstrap.</li>\n<li><a href=\"https://fontawesome.com\" rel=\"nofollow\">Font Awesome Icons</a> - It's already part of the Hackathon Starter, so use this page as a reference.</li>\n<li><a href=\"http://clrs.cc\" rel=\"nofollow\">Colors</a> - A nicer color palette for the web.</li>\n<li><a href=\"http://tympanus.net/Development/CreativeButtons/\" rel=\"nofollow\">Creative Button Styles</a> - awesome button styles.</li>\n<li><a href=\"http://tympanus.net/Development/CreativeLinkEffects/\" rel=\"nofollow\">Creative Link Effects</a> - Beautiful link effects in CSS.</li>\n<li><a href=\"http://codepen.io/andreasstorm/pen/pyjEh\" rel=\"nofollow\">Medium Scroll Effect</a> - Fade in/out header background image as you scroll.</li>\n<li><a href=\"https://github.com/btmills/geopattern\">GeoPattern</a> - SVG background pattern generator.</li>\n<li><a href=\"https://github.com/qrohlf/trianglify\">Trianglify</a> - SVG low-poly background pattern generator.</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Recommended Node.js Libraries</h2><a id=\"user-content-recommended-nodejs-libraries\" class=\"anchor\" aria-label=\"Permalink: Recommended Node.js Libraries\" href=\"#recommended-nodejs-libraries\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li><a href=\"https://github.com/remy/nodemon\">Nodemon</a> - Automatically restart Node.js server on code changes.</li>\n<li><a href=\"https://github.com/bluesmoon/node-geoip\">geoip-lite</a> - Geolocation coordinates from IP address.</li>\n<li><a href=\"http://filesizejs.com/\" rel=\"nofollow\">Filesize.js</a> - Pretty file sizes, e.g. <code>filesize(265318); // \"265.32 kB\"</code>.</li>\n<li><a href=\"http://numeraljs.com\" rel=\"nofollow\">Numeral.js</a> - Library for formatting and manipulating numbers.</li>\n<li><a href=\"https://github.com/lovell/sharp\">sharp</a> - Node.js module for resizing JPEG, PNG, WebP and TIFF images.</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Recommended Client-side Libraries</h2><a id=\"user-content-recommended-client-side-libraries\" class=\"anchor\" aria-label=\"Permalink: Recommended Client-side Libraries\" href=\"#recommended-client-side-libraries\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li><a href=\"http://www.idangero.us/framework7/\" rel=\"nofollow\">Framework7</a> - Full Featured HTML Framework For Building iOS7 Apps.</li>\n<li><a href=\"http://instantclick.io\" rel=\"nofollow\">InstantClick</a> - Makes your pages load instantly by pre-loading them on mouse hover.</li>\n<li><a href=\"https://github.com/rstacruz/nprogress\">NProgress.js</a> - Slim progress bars like on YouTube and Medium.</li>\n<li><a href=\"https://github.com/IanLunn/Hover\">Hover</a> - Awesome CSS3 animations on mouse hover.</li>\n<li><a href=\"http://dimsemenov.com/plugins/magnific-popup/\" rel=\"nofollow\">Magnific Popup</a> - Responsive jQuery Lightbox Plugin.</li>\n<li><a href=\"http://github.hubspot.com/offline/docs/welcome/\" rel=\"nofollow\">Offline.js</a> - Detect when user's internet connection goes offline.</li>\n<li><a href=\"https://alertifyjs.com\" rel=\"nofollow\">Alertify.js</a> - Sweet looking alerts and browser dialogs.</li>\n<li><a href=\"http://selectize.github.io/selectize.js\" rel=\"nofollow\">selectize.js</a> - Styleable select elements and input tags.</li>\n<li><a href=\"http://github.hubspot.com/drop/docs/welcome/\" rel=\"nofollow\">drop.js</a> - Powerful Javascript and CSS library for creating dropdowns and other floating displays.</li>\n<li><a href=\"https://github.com/jlmakes/scrollReveal.js\">scrollReveal.js</a> - Declarative on-scroll reveal animations.</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Pro Tips</h2><a id=\"user-content-pro-tips\" class=\"anchor\" aria-label=\"Permalink: Pro Tips\" href=\"#pro-tips\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li>Need to find a specific object inside an Array? Use <a href=\"http://lodash.com/docs#find\" rel=\"nofollow\">_.find</a> function from Lodash. For example, this is how you would retrieve an X (Twitter) token from database: <code>var token = _.find(req.user.tokens, { kind: 'twitter' });</code>, where 1st parameter is an array, and a 2nd parameter is an object to search for.</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">FAQ</h2><a id=\"user-content-faq\" class=\"anchor\" aria-label=\"Permalink: FAQ\" href=\"#faq\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Why do I get <code>403 Error: Forbidden</code> when submitting a form?</h3><a id=\"user-content-why-do-i-get-403-error-forbidden-when-submitting-a-form\" class=\"anchor\" aria-label=\"Permalink: Why do I get 403 Error: Forbidden when submitting a form?\" href=\"#why-do-i-get-403-error-forbidden-when-submitting-a-form\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You need to add the following hidden input element to your form. This has been added in the <a href=\"https://github.com/sahat/hackathon-starter/pull/40\" data-hovercard-type=\"pull_request\" data-hovercard-url=\"/sahat/hackathon-starter/pull/40/hovercard\">pull request #40</a> as part of the CSRF protection.</p>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"input(type='hidden', name='_csrf', value=_csrf)\"><pre class=\"notranslate\"><code>input(type='hidden', name='_csrf', value=_csrf)\n</code></pre></div>\n<p dir=\"auto\"><strong>Note:</strong> It is now possible to whitelist certain URLs. In other words, you can specify a list of routes that should bypass the CSRF verification check.</p>\n<p dir=\"auto\"><strong>Note 2:</strong> To whitelist dynamic URLs use regular expression tests inside the CSRF middleware to see if <code>req.originalUrl</code> matches your desired pattern.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">I am getting MongoDB Connection Error, how do I fix it?</h3><a id=\"user-content-i-am-getting-mongodb-connection-error-how-do-i-fix-it\" class=\"anchor\" aria-label=\"Permalink: I am getting MongoDB Connection Error, how do I fix it?\" href=\"#i-am-getting-mongodb-connection-error-how-do-i-fix-it\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">That's a custom error message defined in <code>app.js</code> to indicate that there was a problem connecting to MongoDB:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"mongoose.connection.on('error', (err) =&gt; {\n console.error(err);\n console.log('%s MongoDB connection error. Please make sure MongoDB is running.', chalk.red('✗'));\n process.exit();\n});\"><pre><span class=\"pl-s1\">mongoose</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">connection</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">on</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'error'</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">err</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">error</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">err</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'%s MongoDB connection error. Please make sure MongoDB is running.'</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">chalk</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">red</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'✗'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-s1\">process</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">exit</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">You need to have a MongoDB server running before launching <code>app.js</code>. You can download MongoDB <a href=\"https://www.mongodb.com/download-center/community\" rel=\"nofollow\">here</a>, or install it via a package manager.\nWindows users, read <a href=\"https://docs.mongodb.org/manual/tutorial/install-mongodb-on-windows/\" rel=\"nofollow\">Install MongoDB on Windows</a>.</p>\n<p dir=\"auto\"><strong>Tip:</strong> If you are always connected to the internet, you could just use <a href=\"https://www.mongodb.com/cloud/atlas\" rel=\"nofollow\">MongoDB Atlas</a> instead of downloading and installing MongoDB locally. You will only need to update database credentials in <code>.env</code> file.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">I get an error when I deploy my app, why?</h3><a id=\"user-content-i-get-an-error-when-i-deploy-my-app-why\" class=\"anchor\" aria-label=\"Permalink: I get an error when I deploy my app, why?\" href=\"#i-get-an-error-when-i-deploy-my-app-why\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Chances are you haven't changed the <em>Database URI</em> in <code>.env</code>. If <code>MONGODB</code> is set to <code>localhost</code>, it will only work on your machine as long as MongoDB is running. When you deploy to Render, OpenShift, or some other provider, you will not have MongoDB running on <code>localhost</code>. You need to create an account with <a href=\"https://www.mongodb.com/cloud/atlas\" rel=\"nofollow\">MongoDB Atlas</a>, then create a free tier database.\nSee <a href=\"#deployment\">Deployment</a> for more information on how to set up an account and a new database step-by-step with MongoDB Atlas.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Why do you have all routes defined in app.js?</h3><a id=\"user-content-why-do-you-have-all-routes-defined-in-appjs\" class=\"anchor\" aria-label=\"Permalink: Why do you have all routes defined in app.js?\" href=\"#why-do-you-have-all-routes-defined-in-appjs\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">For the sake of simplicity. While there might be a better approach, such as passing <code>app</code> context to each controller as outlined in this <a href=\"http://timstermatic.github.io/blog/2013/08/17/a-simple-mvc-framework-with-node-and-express/\" rel=\"nofollow\">blog</a>, I find such a style to be confusing for beginners. It took me a long time to grasp the concept of <code>exports</code> and <code>module.exports</code>, let alone having a global <code>app</code> reference in other files. Tha to me is backward thinking.\nThe <code>app.js</code> is the \"heart of the app\", it should be the one referencing models, routes, controllers, etc.\nWhen working solo on small projects, I prefer to have everything inside <code>app.js</code> as is the case with this REST API server.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">How It Works (mini guides)</h2><a id=\"user-content-how-it-works-mini-guides\" class=\"anchor\" aria-label=\"Permalink: How It Works (mini guides)\" href=\"#how-it-works-mini-guides\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">This section is intended for giving you a detailed explanation of how a particular functionality works. Maybe you are just curious about how it works, or perhaps you are lost and confused while reading the code, I hope it provides some guidance to you.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Custom HTML and CSS Design 101</h3><a id=\"user-content-custom-html-and-css-design-101\" class=\"anchor\" aria-label=\"Permalink: Custom HTML and CSS Design 101\" href=\"#custom-html-and-css-design-101\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"http://html5up.net/\" rel=\"nofollow\">HTML5 UP</a> has many beautiful templates that you can download for free.</p>\n<p dir=\"auto\">When you download the ZIP file, it will come with <em>index.html</em>, <em>images</em>, <em>CSS</em> and <em>js</em> folders. So, how do you integrate it with Hackathon Starter? Hackathon Starter uses the Bootstrap CSS framework, but these templates do not.\nTrying to use both CSS files at the same time will likely result in undesired effects.</p>\n<p dir=\"auto\"><strong>Note:</strong> Using the custom templates approach, you should understand that you cannot reuse any of the views I have created: layout, the home page, API browser, login, signup, account management, contact. Those views were built using Bootstrap grid and styles. You will have to manually update the grid using a different syntax provided in the template. <strong>Having said that, you can mix and match if you want to do so: Use Bootstrap for the main app interface, and a custom template for a landing page.</strong></p>\n<p dir=\"auto\">Let's start from the beginning. For this example I will use <a href=\"http://html5up.net/escape-velocity/\" rel=\"nofollow\">Escape Velocity</a> template:\n<a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/beb4017fc4b5b77c7e10f5760302549c215a0e550aa6514784c10be8da1313dd/687474703a2f2f68746d6c3575702e6e65742f75706c6f6164732f696d616765732f6573636170652d76656c6f636974792e6a7067\"><img src=\"https://camo.githubusercontent.com/beb4017fc4b5b77c7e10f5760302549c215a0e550aa6514784c10be8da1313dd/687474703a2f2f68746d6c3575702e6e65742f75706c6f6164732f696d616765732f6573636170652d76656c6f636974792e6a7067\" alt=\"Alt\" data-canonical-src=\"http://html5up.net/uploads/images/escape-velocity.jpg\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\"><strong>Note:</strong> For the sake of simplicity I will only consider <code>index.html</code>, and skip <code>left-sidebar.html</code>,\n<code>no-sidebar.html</code>, <code>right-sidebar.html</code>.</p>\n<p dir=\"auto\">Move all JavaScript files from <code>html5up-escape-velocity/js</code> to <code>public/js</code>. Then move all CSS files from <code>html5up-escape-velocity/css</code> to <code>public/css</code>. And finally, move all images from <code>html5up-escape-velocity/images</code> to <code>public/images</code>. You could move it to the existing <strong>img</strong> folder, but that would require manually changing every <code>img</code> reference. Grab the contents of <code>index.html</code> and paste it into <a href=\"https://html-to-pug.com/\" rel=\"nofollow\">HTML To Pug</a>.</p>\n<p dir=\"auto\"><strong>Note:</strong> Do not forget to update all the CSS and JS paths accordingly.</p>\n<p dir=\"auto\">Create a new file <code>escape-velocity.pug</code> and paste the Pug markup in <code>views</code> folder.\nWhenever you see the code <code>res.render('account/login')</code> - that means it will search for <code>views/account/login.pug</code> file.</p>\n<p dir=\"auto\">Let's see how it looks. Create a new controller <strong>escapeVelocity</strong> inside <code>controllers/home.js</code>:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"exports.escapeVelocity = (req, res) =&gt; {\n res.render('escape-velocity', {\n title: 'Landing Page'\n });\n};\"><pre><span class=\"pl-s1\">exports</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">escapeVelocity</span> <span class=\"pl-c1\">=</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">req</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">res</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-s1\">res</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">render</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'escape-velocity'</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-c1\">title</span>: <span class=\"pl-s\">'Landing Page'</span>\n <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">And then create a route in <code>app.js</code>. I placed it right after the index controller:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"app.get('/escape-velocity', homeController.escapeVelocity);\"><pre><span class=\"pl-s1\">app</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'/escape-velocity'</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">homeController</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">escapeVelocity</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">Restart the server (if you are not using <strong>nodemon</strong>); then you should see the new template at <code>http://localhost:8080/escape-velocity</code></p>\n<p dir=\"auto\">I will stop right here, but if you would like to use this template as more than just a single page, take a look at how these Pug templates work: <code>layout.pug</code> - base template, <code>index.pug</code> - home page, <code>partials/header.pug</code> - Bootstrap navbar, <code>partials/footer.pug</code> - sticky footer. You will have to manually break it apart into smaller pieces. Figure out which part of the template you want to keep the same on all pages - that's your new <code>layout.pug</code>.\nThen, each page that changes, be it <code>index.pug</code>, <code>about.pug</code>, <code>contact.pug</code>\nwill be embedded in your new <code>layout.pug</code> via <code>block content</code>. Use existing templates as a reference.</p>\n<p dir=\"auto\">This is a rather lengthy process, and templates you get from elsewhere might have yet another grid system. That's why I chose <em>Bootstrap</em> for the Hackathon Starter.\nMany people are already familiar with <em>Bootstrap</em>, plus it's easy to get started with it if you have never used <em>Bootstrap</em>.\nYou can also buy many beautifully designed <em>Bootstrap</em> themes at <a href=\"http://themeforest.net/\" rel=\"nofollow\">Themeforest</a>, and use them as a drop-in replacement for Hackathon Starter. However, if you would like to go with a completely custom HTML/CSS design, this should help you to get started!</p>\n<hr>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">How do flash messages work in this project?</h3><a id=\"user-content-how-do-flash-messages-work-in-this-project\" class=\"anchor\" aria-label=\"Permalink: How do flash messages work in this project?\" href=\"#how-do-flash-messages-work-in-this-project\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Flash messages allow you to display a message at the end of the request and access it on the next request and only the next request. For instance, on a failed login attempt, you would display an alert with some error message, but as soon as you refresh that page or visit a different page and come back to the login page, that error message will be gone. It is only displayed once.\nThis project uses <em>express-flash</em> module for flash messages. And that module is built on top of <em>connect-flash</em>, which is what I used in this project initially. With <em>express-flash</em> you don't have to explicitly send a flash message to every view inside <code>res.render()</code>.\nAll flash messages are available in your views via <code>messages</code> object by default, thanks to <em>express-flash</em>.</p>\n<p dir=\"auto\">Flash messages have a two-step process. You use <code>req.flash('errors', { msg: 'Error messages goes here' }</code>\nto create a flash message in your controllers, and then display them in your views:</p>\n<div class=\"highlight highlight-text-jade notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"if messages.errors\n .alert.alert-danger.fade.in\n for error in messages.errors\n div= error.msg\"><pre><span class=\"pl-k\">if</span> <span class=\"pl-smi\">messages</span>.<span class=\"pl-smi\">errors</span>\n <span class=\"pl-e\">.alert.alert-danger.fade.in</span>\n <span class=\"pl-k\">for</span> error <span class=\"pl-k\">in</span> <span class=\"pl-smi\">messages</span>.<span class=\"pl-smi\">errors</span>\n div<span class=\"pl-s1\"><span class=\"pl-c1\">=</span> <span class=\"pl-smi\">error</span>.<span class=\"pl-smi\">msg</span></span></pre></div>\n<p dir=\"auto\">In the first step, <code>'errors'</code> is the name of a flash message, which should match the name of the property on <code>messages</code> object in your views. You place alert messages inside <code>if message.errors</code> because you don't want to show them flash messages are present.\nThe reason why you pass an error like <code>{ msg: 'Error message goes here' }</code> instead of just a string - <code>'Error message goes here'</code>, is for the sake of consistency.\nTo clarify that, <em>express-validator</em> module which is used for validating and sanitizing user's input, returns all errors as an array of objects, where each object has a <code>msg</code> property with a message why an error has occurred. Here is a more general example of what express-validator returns when there are errors present:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"[\n { param: &quot;name&quot;, msg: &quot;Name is required&quot;, value: &quot;&lt;received input&gt;&quot; },\n { param: &quot;email&quot;, msg: &quot;A valid email is required&quot;, value: &quot;&lt;received input&gt;&quot; }\n]\"><pre><span class=\"pl-kos\">[</span>\n <span class=\"pl-kos\">{</span> <span class=\"pl-c1\">param</span>: <span class=\"pl-s\">\"name\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-c1\">msg</span>: <span class=\"pl-s\">\"Name is required\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-c1\">value</span>: <span class=\"pl-s\">\"&lt;received input&gt;\"</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">,</span>\n <span class=\"pl-kos\">{</span> <span class=\"pl-c1\">param</span>: <span class=\"pl-s\">\"email\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-c1\">msg</span>: <span class=\"pl-s\">\"A valid email is required\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-c1\">value</span>: <span class=\"pl-s\">\"&lt;received input&gt;\"</span> <span class=\"pl-kos\">}</span>\n<span class=\"pl-kos\">]</span></pre></div>\n<p dir=\"auto\">To keep consistent with that style, you should pass all flash messages as <code>{ msg: 'My flash message' }</code> instead of a string. Otherwise, you will see an alert box without an error message. That is because in <strong>partials/flash.pug</strong> template it will try to output <code>error.msg</code> (i.e. <code>\"My flash message\".msg</code>), in other words, it will try to call a <code>msg</code> method on a <em>String</em> object, which will return <em>undefined</em>. Everything I just mentioned about errors, also applies to \"info\" and \"success\" flash messages, and you could even create a new one yourself, such as:</p>\n<p dir=\"auto\"><strong>Data Usage Controller (Example)</strong></p>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"req.flash('warning', { msg: 'You have exceeded 90% of your data usage' });\"><pre class=\"notranslate\"><code>req.flash('warning', { msg: 'You have exceeded 90% of your data usage' });\n</code></pre></div>\n<p dir=\"auto\"><strong>User Account Page (Example)</strong></p>\n<div class=\"highlight highlight-text-jade notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"if messages.warning\n .alert.alert-warning.fade.in\n for warning in messages.warning\n div= warning.msg\"><pre><span class=\"pl-k\">if</span> <span class=\"pl-smi\">messages</span>.<span class=\"pl-smi\">warning</span>\n <span class=\"pl-e\">.alert.alert-warning.fade.in</span>\n <span class=\"pl-k\">for</span> warning <span class=\"pl-k\">in</span> <span class=\"pl-smi\">messages</span>.<span class=\"pl-smi\">warning</span>\n div<span class=\"pl-s1\"><span class=\"pl-c1\">=</span> <span class=\"pl-smi\">warning</span>.<span class=\"pl-smi\">msg</span></span></pre></div>\n<p dir=\"auto\"><code>partials/flash.pug</code> is a partial template that contains how flash messages are formatted. Previously, flash messages were scattered throughout each view that used flash messages (contact, login, signup, profile), but now, thankfully it uses a <em>DRY</em> approach.</p>\n<p dir=\"auto\">The flash messages partial template is <em>included</em> in the <code>layout.pug</code>, along with footer and navigation.</p>\n<div class=\"highlight highlight-text-jade notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"body\n include partials/header\n\n .container\n include partials/flash\n block content\n\n include partials/footer\"><pre>body\n <span class=\"pl-k\">include</span> <span class=\"pl-v\">partials/header</span>\n\n <span class=\"pl-e\">.container</span>\n <span class=\"pl-k\">include</span> <span class=\"pl-v\">partials/flash</span>\n <span class=\"pl-k\">block</span> <span class=\"pl-v\">content</span>\n\n <span class=\"pl-k\">include</span> <span class=\"pl-v\">partials/footer</span></pre></div>\n<p dir=\"auto\">If you have any further questions about flash messages, please feel free to open an issue, and I will update this mini-guide accordingly, or send a pull request if you would like to include something that I missed.</p>\n<hr>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">How do I create a new page?</h3><a id=\"user-content-how-do-i-create-a-new-page\" class=\"anchor\" aria-label=\"Permalink: How do I create a new page?\" href=\"#how-do-i-create-a-new-page\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">A more correct way to say this would be \"How do I create a new route?\" The main file <code>app.js</code> contains all the routes.\nEach route has a callback function associated with it. Sometimes you will see three or more arguments for a route. In a case like that, the first argument is still a URL string, while middle arguments are what's called middleware. Think of middleware as a door. If this door prevents you from continuing forward, you won't get to your callback function. One such example is a route that requires authentication.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"app.get('/account', passportConfig.isAuthenticated, userController.getAccount);\"><pre><span class=\"pl-s1\">app</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'/account'</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">passportConfig</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">isAuthenticated</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">userController</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">getAccount</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">It always goes from left to right. A user visits <code>/account</code> page. Then <code>isAuthenticated</code> middleware checks if you are authenticated:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"exports.isAuthenticated = (req, res, next) =&gt; {\n if (req.isAuthenticated()) {\n return next();\n }\n res.redirect('/login');\n};\"><pre><span class=\"pl-s1\">exports</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">isAuthenticated</span> <span class=\"pl-c1\">=</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">req</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">res</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">next</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-k\">if</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">req</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">isAuthenticated</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-k\">return</span> <span class=\"pl-s1\">next</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-kos\">}</span>\n <span class=\"pl-s1\">res</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">redirect</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'/login'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">If you are authenticated, you let this visitor pass through your \"door\" by calling <code>return next();</code>. It then proceeds to the\nnext middleware until it reaches the last argument, which is a callback function that typically renders a template on <code>GET</code> requests or redirects on <code>POST</code> requests. In this case, if you are authenticated, you will be redirected to the <em>Account Management</em> page; otherwise, you will be redirected to the <em>Login</em> page.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"exports.getAccount = (req, res) =&gt; {\n res.render('account/profile', {\n title: 'Account Management'\n });\n};\"><pre><span class=\"pl-s1\">exports</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">getAccount</span> <span class=\"pl-c1\">=</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">req</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">res</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-s1\">res</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">render</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'account/profile'</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-c1\">title</span>: <span class=\"pl-s\">'Account Management'</span>\n <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">Express.js has <code>app.get</code>, <code>app.post</code>, <code>app.put</code>, <code>app.delete</code>, but for the most part, you will only use the first two HTTP verbs, unless you are building a RESTful API.\nIf you just want to display a page, then use <code>GET</code>, if you are submitting a form, sending a file then use <code>POST</code>.</p>\n<p dir=\"auto\">Here is a typical workflow for adding new routes to your application. Let's say we are building a page that lists all books from the database.</p>\n<p dir=\"auto\"><strong>Step 1.</strong> Start by defining a route.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"app.get('/books', bookController.getBooks);\"><pre><span class=\"pl-s1\">app</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'/books'</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">bookController</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">getBooks</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<hr>\n<p dir=\"auto\"><strong>Note:</strong> As of Express 4.x you can define your routes like so:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"app.route('/books')\n .get(bookController.getBooks)\n .post(bookController.createBooks)\n .put(bookController.updateBooks)\n .delete(bookController.deleteBooks)\"><pre><span class=\"pl-s1\">app</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">route</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'/books'</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">bookController</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">getBooks</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">post</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">bookController</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">createBooks</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">put</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">bookController</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">updateBooks</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">delete</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">bookController</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">deleteBooks</span><span class=\"pl-kos\">)</span></pre></div>\n<p dir=\"auto\">And here is how a route would look if it required an <em>authentication</em> and an <em>authorization</em> middleware:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"app.route('/api/twitter')\n .all(passportConfig.isAuthenticated)\n .all(passportConfig.isAuthorized)\n .get(apiController.getTwitter)\n .post(apiController.postTwitter)\"><pre><span class=\"pl-s1\">app</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">route</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'/api/twitter'</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">all</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">passportConfig</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">isAuthenticated</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">all</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">passportConfig</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">isAuthorized</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">apiController</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">getTwitter</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">post</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">apiController</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">postTwitter</span><span class=\"pl-kos\">)</span></pre></div>\n<p dir=\"auto\">Use whichever style makes sense to you. Either one is acceptable. I think that chaining HTTP verbs on <code>app.route</code> is a very clean and elegant approach, but on the other hand, I can no longer see all my routes at a glance when you have one route per line.</p>\n<p dir=\"auto\"><strong>Step 2.</strong> Create a new schema and a model <code>Book.js</code> inside the <em>models</em> directory.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"const mongoose = require('mongoose');\n\nconst bookSchema = new mongoose.Schema({\n name: String\n});\n\nconst Book = mongoose.model('Book', bookSchema);\nmodule.exports = Book;\"><pre><span class=\"pl-k\">const</span> <span class=\"pl-s1\">mongoose</span> <span class=\"pl-c1\">=</span> <span class=\"pl-en\">require</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'mongoose'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-k\">const</span> <span class=\"pl-s1\">bookSchema</span> <span class=\"pl-c1\">=</span> <span class=\"pl-k\">new</span> <span class=\"pl-s1\">mongoose</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">Schema</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">{</span>\n <span class=\"pl-c1\">name</span>: <span class=\"pl-v\">String</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-k\">const</span> <span class=\"pl-v\">Book</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">mongoose</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">model</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'Book'</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">bookSchema</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-smi\">module</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">exports</span> <span class=\"pl-c1\">=</span> <span class=\"pl-v\">Book</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\"><strong>Step 3.</strong> Create a new controller file called <code>book.js</code> inside the <em>controllers</em> directory.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"/**\n * GET /books\n * List all books.\n */\nconst Book = require('../models/Book.js');\n\nexports.getBooks = (req, res) =&gt; {\n Book.find((err, docs) =&gt; {\n res.render('books', { books: docs });\n });\n};\"><pre><span class=\"pl-c\">/**</span>\n<span class=\"pl-c\"> * GET /books</span>\n<span class=\"pl-c\"> * List all books.</span>\n<span class=\"pl-c\"> */</span>\n<span class=\"pl-k\">const</span> <span class=\"pl-v\">Book</span> <span class=\"pl-c1\">=</span> <span class=\"pl-en\">require</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'../models/Book.js'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-s1\">exports</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">getBooks</span> <span class=\"pl-c1\">=</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">req</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">res</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-v\">Book</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">find</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">err</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">docs</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-s1\">res</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">render</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'books'</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">{</span> <span class=\"pl-c1\">books</span>: <span class=\"pl-s1\">docs</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\"><strong>Step 4.</strong> Import that controller in <code>app.js</code>.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"const bookController = require('./controllers/book');\"><pre><span class=\"pl-k\">const</span> <span class=\"pl-s1\">bookController</span> <span class=\"pl-c1\">=</span> <span class=\"pl-en\">require</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'./controllers/book'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\"><strong>Step 5.</strong> Create <code>books.pug</code> template.</p>\n<div class=\"highlight highlight-text-jade notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"extends layout\n\nblock content\n .page-header\n h3 All Books\n\n ul\n for book in books\n li= book.name\"><pre><span class=\"pl-k\">extends</span> <span class=\"pl-v\">layout</span>\n\n<span class=\"pl-k\">block</span> <span class=\"pl-v\">content</span>\n <span class=\"pl-e\">.page-header</span>\n h3 All Books\n\n ul\n <span class=\"pl-k\">for</span> book <span class=\"pl-k\">in</span> books\n li<span class=\"pl-s1\"><span class=\"pl-c1\">=</span> <span class=\"pl-smi\">book</span>.<span class=\"pl-c1\">name</span></span></pre></div>\n<p dir=\"auto\">That's it! I will say that you could have combined Step 1, 2, 3 as following:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"app.get('/books',(req, res) =&gt; {\n Book.find((err, docs) =&gt; {\n res.render('books', { books: docs });\n });\n});\"><pre><span class=\"pl-s1\">app</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'/books'</span><span class=\"pl-kos\">,</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">req</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">res</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-v\">Book</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">find</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">err</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">docs</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-s1\">res</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">render</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'books'</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">{</span> <span class=\"pl-c1\">books</span>: <span class=\"pl-s1\">docs</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">Sure, it's simpler, but as soon as you pass 1000 lines of code in <code>app.js</code> it becomes a little challenging to navigate the file.\nI mean, the whole point of this boilerplate project was to separate concerns, so you could work with your teammates without running into <em>MERGE CONFLICTS</em>. Imagine you have four developers working on a single <code>app.js</code>, I promise you it won't be fun resolving merge conflicts all the time.\nIf you are the only developer, then it's okay. But as I said, once it gets up to a certain LoC size, it becomes difficult to maintain everything in a single file.</p>\n<p dir=\"auto\">That's all there is to it. Express.js is super simple to use.\nMost of the time you will be dealing with other APIs to do the real work:\n<a href=\"http://mongoosejs.com/docs/guide.html\" rel=\"nofollow\">Mongoose</a> for querying database, socket.io for sending and receiving messages over WebSockets, sending emails via <a href=\"http://nodemailer.com/\" rel=\"nofollow\">Nodemailer</a>, form validation using <a href=\"https://github.com/validatorjs/validator.js\">validator.js</a> library, parsing websites using <a href=\"https://github.com/cheeriojs/cheerio\">Cheerio</a>, etc.</p>\n<hr>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">How do I use Socket.io with Hackathon Starter?</h3><a id=\"user-content-how-do-i-use-socketio-with-hackathon-starter\" class=\"anchor\" aria-label=\"Permalink: How do I use Socket.io with Hackathon Starter?\" href=\"#how-do-i-use-socketio-with-hackathon-starter\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://github.com/dstroot\">Dan Stroot</a> submitted an excellent <a href=\"https://github.com/dstroot/hackathon-starter/commit/0a632def1ce8da446709d92812423d337c977d75\">pull request</a> that adds a real-time dashboard with socket.io.\nAnd as much as I'd like to add it to the project, I think it violates one of the main principles of the Hackathon Starter:</p>\n<blockquote>\n<p dir=\"auto\">When I started this project, my primary focus was on simplicity and ease of use.\nI also tried to make it as generic and reusable as possible to cover most use cases of\nhackathon web apps, <strong>without being too specific</strong>.</p>\n</blockquote>\n<p dir=\"auto\">When I need to use socket.io, I <strong>really</strong> need it, but most of the time - I don't. But more importantly, WebSockets support is still experimental on most hosting providers.\nDue to past provider issues with WebSockets, I have not include socket.io as part of the Hackathon Starter. <em>For now...</em>\nIf you need to use socket.io in your app, please continue reading.</p>\n<p dir=\"auto\">First, you need to install socket.io:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"npm install socket.io\"><pre><span class=\"pl-s1\">npm</span> <span class=\"pl-s1\">install</span> <span class=\"pl-s1\">socket</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">io</span></pre></div>\n<p dir=\"auto\">Replace <code>const app = express();</code> with the following code:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"const app = express();\nconst server = require('http').Server(app);\nconst io = require('socket.io')(server);\"><pre><span class=\"pl-k\">const</span> <span class=\"pl-s1\">app</span> <span class=\"pl-c1\">=</span> <span class=\"pl-en\">express</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-k\">const</span> <span class=\"pl-s1\">server</span> <span class=\"pl-c1\">=</span> <span class=\"pl-en\">require</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'http'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">Server</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">app</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-k\">const</span> <span class=\"pl-s1\">io</span> <span class=\"pl-c1\">=</span> <span class=\"pl-en\">require</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'socket.io'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">server</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">I like to have the following code organization in <code>app.js</code> (from top to bottom): module dependencies,\nimport controllers, import configs, connect to database, express configuration, routes,\nstart the server, socket.io stuff. That way I always know where to look for things.</p>\n<p dir=\"auto\">Add the following code at the end of <code>app.js</code>:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"io.on('connection', (socket) =&gt; {\n socket.emit('greet', { hello: 'Hey there browser!' });\n socket.on('respond', (data) =&gt; {\n console.log(data);\n });\n socket.on('disconnect', () =&gt; {\n console.log('Socket disconnected');\n });\n});\"><pre><span class=\"pl-s1\">io</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">on</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'connection'</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">socket</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-s1\">socket</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">emit</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'greet'</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">{</span> <span class=\"pl-c1\">hello</span>: <span class=\"pl-s\">'Hey there browser!'</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-s1\">socket</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">on</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'respond'</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">data</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">data</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-s1\">socket</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">on</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'disconnect'</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'Socket disconnected'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">One last thing left to change:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"app.listen(app.get('port'), () =&gt; {\"><pre><span class=\"pl-s1\">app</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">listen</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">app</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'port'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span></pre></div>\n<p dir=\"auto\">to</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"server.listen(app.get('port'), () =&gt; {\"><pre><span class=\"pl-s1\">server</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">listen</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">app</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'port'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span></pre></div>\n<p dir=\"auto\">At this point, we are done with the back-end.</p>\n<p dir=\"auto\">You now have a choice - to include your JavaScript code in Pug templates or have all your client-side JavaScript in a separate file - in <code>app.js</code>. I admit, when I first started with Node.js and JavaScript in general, I placed all JavaScript code inside templates because I have access to template variables passed in from Express right then and there. It's the easiest thing you can do, but also the least efficient and harder to maintain. Since then I almost never include inline JavaScript inside templates anymore.</p>\n<p dir=\"auto\">But it's also understandable if you want to take the easier road. Most of the time you don't even care about performance during hackathons, you just want to <em>\"get shit done\"</em> before the time runs out. Well, either way, use whichever approach makes more sense to you. At the end of the day, it's <strong>what</strong> you build that matters, not <strong>how</strong> you build it.</p>\n<p dir=\"auto\">If you want to stick all your JavaScript inside templates, then in <code>layout.pug</code> - your main template file, add this to <code>head</code> block.</p>\n<div class=\"highlight highlight-text-jade notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"script(src='/socket.io/socket.io.js')\nscript.\n let socket = io.connect(window.location.href);\n socket.on('greet', function (data) {\n console.log(data);\n socket.emit('respond', { message: 'Hey there, server!' });\n });\"><pre>script<span class=\"pl-c1\">(</span><span class=\"pl-e\">src</span>=<span class=\"pl-s\">'/socket.io/socket.io.js'</span><span class=\"pl-c1\">)</span>\n<span class=\"pl-ent\">script</span>.\n <span class=\"pl-k\">let</span> socket <span class=\"pl-k\">=</span> <span class=\"pl-smi\">io</span>.<span class=\"pl-en\">connect</span>(<span class=\"pl-c1\">window</span>.<span class=\"pl-c1\">location</span>.<span class=\"pl-c1\">href</span>);\n <span class=\"pl-smi\">socket</span>.<span class=\"pl-en\">on</span>(<span class=\"pl-s\"><span class=\"pl-pds\">'</span>greet<span class=\"pl-pds\">'</span></span>, <span class=\"pl-k\">function</span> (<span class=\"pl-smi\">data</span>) {\n <span class=\"pl-en\">console</span>.<span class=\"pl-c1\">log</span>(data);\n <span class=\"pl-smi\">socket</span>.<span class=\"pl-en\">emit</span>(<span class=\"pl-s\"><span class=\"pl-pds\">'</span>respond<span class=\"pl-pds\">'</span></span>, { message<span class=\"pl-k\">:</span> <span class=\"pl-s\"><span class=\"pl-pds\">'</span>Hey there, server!<span class=\"pl-pds\">'</span></span> });\n });</pre></div>\n<p dir=\"auto\"><strong>Note:</strong> Notice the path of the <code>socket.io.js</code>, you don't actually have to have <code>socket.io.js</code> file anywhere in your project; it will be generated automatically at runtime.</p>\n<p dir=\"auto\">If you want to have JavaScript code separate from templates, move that inline script code into <code>app.js</code>, inside the <code>$(document).ready()</code> function:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"$(document).ready(function() {\n\n // Place JavaScript code here...\n let socket = io.connect(window.location.href);\n socket.on('greet', function (data) {\n console.log(data);\n socket.emit('respond', { message: 'Hey there, server!' });\n });\n\n});\"><pre><span class=\"pl-en\">$</span><span class=\"pl-kos\">(</span><span class=\"pl-smi\">document</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">ready</span><span class=\"pl-kos\">(</span><span class=\"pl-k\">function</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span>\n\n <span class=\"pl-c\">// Place JavaScript code here...</span>\n <span class=\"pl-k\">let</span> <span class=\"pl-s1\">socket</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">io</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">connect</span><span class=\"pl-kos\">(</span><span class=\"pl-smi\">window</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">location</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">href</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-s1\">socket</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">on</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'greet'</span><span class=\"pl-kos\">,</span> <span class=\"pl-k\">function</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">data</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">data</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-s1\">socket</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">emit</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'respond'</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">{</span> <span class=\"pl-c1\">message</span>: <span class=\"pl-s\">'Hey there, server!'</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">And we are done!</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Cheatsheets</h2><a id=\"user-content-cheatsheets\" class=\"anchor\" aria-label=\"Permalink: Cheatsheets\" href=\"#cheatsheets\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/e7c688b2e74bec074090248879643697638c0fec246971f979aa0a0bdaadadab/68747470733a2f2f66726f6e74656e646d6173746572732e636f6d2f6173736574732f6573362d6c6f676f2e706e67\"><img src=\"https://camo.githubusercontent.com/e7c688b2e74bec074090248879643697638c0fec246971f979aa0a0bdaadadab/68747470733a2f2f66726f6e74656e646d6173746572732e636f6d2f6173736574732f6573362d6c6f676f2e706e67\" height=\"34\" align=\"top\" data-canonical-src=\"https://frontendmasters.com/assets/es6-logo.png\" style=\"max-width: 100%;\"></a> ES6 Cheatsheet</h3><a id=\"user-content--es6-cheatsheet\" class=\"anchor\" aria-label=\"Permalink: ES6 Cheatsheet\" href=\"#-es6-cheatsheet\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Declarations</h4><a id=\"user-content-declarations\" class=\"anchor\" aria-label=\"Permalink: Declarations\" href=\"#declarations\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Declares a read-only named constant.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"const name = 'yourName';\"><pre><span class=\"pl-k\">const</span> <span class=\"pl-s1\">name</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s\">'yourName'</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">Declares a block scope local variable.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"let index = 0;\"><pre><span class=\"pl-k\">let</span> <span class=\"pl-s1\">index</span> <span class=\"pl-c1\">=</span> <span class=\"pl-c1\">0</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Template Strings</h4><a id=\"user-content-template-strings\" class=\"anchor\" aria-label=\"Permalink: Template Strings\" href=\"#template-strings\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Using the <strong>`${}`</strong> syntax, strings can embed expressions.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"const name = 'Oggy';\nconst age = 3;\n\nconsole.log(`My cat is named ${name} and is ${age} years old.`);\"><pre><span class=\"pl-k\">const</span> <span class=\"pl-s1\">name</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s\">'Oggy'</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-k\">const</span> <span class=\"pl-s1\">age</span> <span class=\"pl-c1\">=</span> <span class=\"pl-c1\">3</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">`My cat is named <span class=\"pl-s1\"><span class=\"pl-kos\">${</span><span class=\"pl-s1\">name</span><span class=\"pl-kos\">}</span></span> and is <span class=\"pl-s1\"><span class=\"pl-kos\">${</span><span class=\"pl-s1\">age</span><span class=\"pl-kos\">}</span></span> years old.`</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Modules</h4><a id=\"user-content-modules\" class=\"anchor\" aria-label=\"Permalink: Modules\" href=\"#modules\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">To import functions, objects, or primitives exported from an external module. These are the most common types of importing.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"const name = require('module-name');\"><pre><span class=\"pl-k\">const</span> <span class=\"pl-s1\">name</span> <span class=\"pl-c1\">=</span> <span class=\"pl-en\">require</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'module-name'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"const { foo, bar } = require('module-name');\"><pre><span class=\"pl-k\">const</span> <span class=\"pl-kos\">{</span> foo<span class=\"pl-kos\">,</span> bar <span class=\"pl-kos\">}</span> <span class=\"pl-c1\">=</span> <span class=\"pl-en\">require</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'module-name'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">To export functions, objects, or primitives from a given file or module.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"module.exports = { myFunction };\"><pre><span class=\"pl-smi\">module</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">exports</span> <span class=\"pl-c1\">=</span> <span class=\"pl-kos\">{</span> myFunction <span class=\"pl-kos\">}</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"module.exports.name = 'yourName';\"><pre><span class=\"pl-smi\">module</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">exports</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">name</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s\">'yourName'</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"module.exports = myFunctionOrClass;\"><pre><span class=\"pl-smi\">module</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">exports</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">myFunctionOrClass</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Spread Operator</h4><a id=\"user-content-spread-operator\" class=\"anchor\" aria-label=\"Permalink: Spread Operator\" href=\"#spread-operator\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">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.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"myFunction(...iterableObject);\"><pre><span class=\"pl-en\">myFunction</span><span class=\"pl-kos\">(</span>...<span class=\"pl-s1\">iterableObject</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;ChildComponent {...this.props} /&gt;\"><pre><span class=\"pl-c1\">&lt;</span><span class=\"pl-ent\">ChildComponent</span> <span class=\"pl-kos\">{</span>...<span class=\"pl-smi\">this</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">props</span><span class=\"pl-kos\">}</span> <span class=\"pl-c1\">/</span><span class=\"pl-c1\">&gt;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Promises</h4><a id=\"user-content-promises\" class=\"anchor\" aria-label=\"Permalink: Promises\" href=\"#promises\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">A Promise is used in asynchronous computations to represent an operation that hasn't completed yet but is expected in the future.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"var p = new Promise(function(resolve, reject) { });\"><pre><span class=\"pl-k\">var</span> <span class=\"pl-s1\">p</span> <span class=\"pl-c1\">=</span> <span class=\"pl-k\">new</span> <span class=\"pl-v\">Promise</span><span class=\"pl-kos\">(</span><span class=\"pl-k\">function</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">resolve</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">reject</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">The <code>catch()</code> method returns a Promise and deals with rejected cases only.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"p.catch(function(reason) { /* handle rejection */ });\"><pre><span class=\"pl-s1\">p</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">catch</span><span class=\"pl-kos\">(</span><span class=\"pl-k\">function</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">reason</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span> <span class=\"pl-c\">/* handle rejection */</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">The <code>then()</code> method returns a Promise. It takes two arguments: callback for the success &amp; failure cases.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"p.then(function(value) { /* handle fulfillment */ }, function(reason) { /* handle rejection */ });\"><pre><span class=\"pl-s1\">p</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">then</span><span class=\"pl-kos\">(</span><span class=\"pl-k\">function</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">value</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span> <span class=\"pl-c\">/* handle fulfillment */</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">,</span> <span class=\"pl-k\">function</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">reason</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span> <span class=\"pl-c\">/* handle rejection */</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">The <code>Promise.all(iterable)</code> 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.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"Promise.all([p1, p2, p3]).then(function(values) { console.log(values) });\"><pre><span class=\"pl-v\">Promise</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">all</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">[</span><span class=\"pl-s1\">p1</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">p2</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">p3</span><span class=\"pl-kos\">]</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">then</span><span class=\"pl-kos\">(</span><span class=\"pl-k\">function</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">values</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span> <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">values</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Arrow Functions</h4><a id=\"user-content-arrow-functions\" class=\"anchor\" aria-label=\"Permalink: Arrow Functions\" href=\"#arrow-functions\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Arrow function expression. Shorter syntax &amp; lexically binds the <code>this</code> value. Arrow functions are anonymous.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"singleParam =&gt; { statements }\"><pre><span class=\"pl-s1\">singleParam</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span> <span class=\"pl-s1\">statements</span> <span class=\"pl-kos\">}</span></pre></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"() =&gt; { statements }\"><pre><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span> <span class=\"pl-s1\">statements</span> <span class=\"pl-kos\">}</span></pre></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"(param1, param2) =&gt; expression\"><pre><span class=\"pl-kos\">(</span><span class=\"pl-s1\">param1</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">param2</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-s1\">expression</span></pre></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"const arr = [1, 2, 3, 4, 5];\nconst squares = arr.map(x =&gt; x * x);\"><pre><span class=\"pl-k\">const</span> <span class=\"pl-s1\">arr</span> <span class=\"pl-c1\">=</span> <span class=\"pl-kos\">[</span><span class=\"pl-c1\">1</span><span class=\"pl-kos\">,</span> <span class=\"pl-c1\">2</span><span class=\"pl-kos\">,</span> <span class=\"pl-c1\">3</span><span class=\"pl-kos\">,</span> <span class=\"pl-c1\">4</span><span class=\"pl-kos\">,</span> <span class=\"pl-c1\">5</span><span class=\"pl-kos\">]</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-k\">const</span> <span class=\"pl-s1\">squares</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">arr</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">map</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">x</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-s1\">x</span> <span class=\"pl-c1\">*</span> <span class=\"pl-s1\">x</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Classes</h4><a id=\"user-content-classes\" class=\"anchor\" aria-label=\"Permalink: Classes\" href=\"#classes\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The class declaration creates a new class using prototype-based inheritance.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"class Person {\n constructor(name, age, gender) {\n this.name = name;\n this.age = age;\n this.gender = gender;\n }\n\n incrementAge() {\n this.age++;\n }\n}\"><pre><span class=\"pl-k\">class</span> <span class=\"pl-v\">Person</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-en\">constructor</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">name</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">age</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">gender</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">this</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">name</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">name</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-smi\">this</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">age</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">age</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-smi\">this</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">gender</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">gender</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-kos\">}</span>\n\n <span class=\"pl-en\">incrementAge</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">this</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">age</span><span class=\"pl-c1\">++</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-kos\">}</span>\n<span class=\"pl-kos\">}</span></pre></div>\n<p dir=\"auto\">🎁 <strong>Credits</strong>: <a href=\"https://duckduckgo.com/?q=es6+cheatsheet&amp;ia=cheatsheet&amp;iax=1\" rel=\"nofollow\">DuckDuckGo</a> and <a href=\"https://github.com/DrkSephy/es6-cheatsheet\">@DrkSephy</a>.</p>\n<p dir=\"auto\">🔝 <sub><a href=\"#table-of-contents\"><strong>back to top</strong></a></sub></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/6026f43553440148f7af01f5610fd18b81bbbc6dab1c0da4bad60090f0bafd65/687474703a2f2f692e737461636b2e696d6775722e636f6d2f4d6d7777322e706e67\"><img src=\"https://camo.githubusercontent.com/6026f43553440148f7af01f5610fd18b81bbbc6dab1c0da4bad60090f0bafd65/687474703a2f2f692e737461636b2e696d6775722e636f6d2f4d6d7777322e706e67\" height=\"34\" align=\"top\" data-canonical-src=\"http://i.stack.imgur.com/Mmww2.png\" style=\"max-width: 100%;\"></a> JavaScript Date Cheatsheet</h3><a id=\"user-content--javascript-date-cheatsheet\" class=\"anchor\" aria-label=\"Permalink: JavaScript Date Cheatsheet\" href=\"#-javascript-date-cheatsheet\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Unix Timestamp (seconds)</h4><a id=\"user-content-unix-timestamp-seconds\" class=\"anchor\" aria-label=\"Permalink: Unix Timestamp (seconds)\" href=\"#unix-timestamp-seconds\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"Math.floor(Date.now() / 1000);\"><pre><span class=\"pl-v\">Math</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">floor</span><span class=\"pl-kos\">(</span><span class=\"pl-v\">Date</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">now</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">/</span> <span class=\"pl-c1\">1000</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"moment().unix();\"><pre lang=\"MomentJS\" class=\"notranslate\"><code>moment().unix();\n</code></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Add 30 minutes to a Date object</h4><a id=\"user-content-add-30-minutes-to-a-date-object\" class=\"anchor\" aria-label=\"Permalink: Add 30 minutes to a Date object\" href=\"#add-30-minutes-to-a-date-object\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"var now = new Date();\nnow.setMinutes(now.getMinutes() + 30);\"><pre><span class=\"pl-k\">var</span> <span class=\"pl-s1\">now</span> <span class=\"pl-c1\">=</span> <span class=\"pl-k\">new</span> <span class=\"pl-v\">Date</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-s1\">now</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">setMinutes</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">now</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">getMinutes</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">+</span> <span class=\"pl-c1\">30</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"moment().add(30, 'minutes');\"><pre lang=\"MomentJS\" class=\"notranslate\"><code>moment().add(30, 'minutes');\n</code></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Date Formatting</h4><a id=\"user-content-date-formatting\" class=\"anchor\" aria-label=\"Permalink: Date Formatting\" href=\"#date-formatting\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"// DD-MM-YYYY\nvar now = new Date();\n\nvar DD = now.getDate();\nvar MM = now.getMonth() + 1;\nvar YYYY = now.getFullYear();\n\nif (DD &lt; 10) {\n DD = '0' + DD;\n}\n\nif (MM &lt; 10) {\n MM = '0' + MM;\n}\n\nconsole.log(MM + '-' + DD + '-' + YYYY); // 03-30-2016\"><pre><span class=\"pl-c\">// DD-MM-YYYY</span>\n<span class=\"pl-k\">var</span> <span class=\"pl-s1\">now</span> <span class=\"pl-c1\">=</span> <span class=\"pl-k\">new</span> <span class=\"pl-v\">Date</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-k\">var</span> <span class=\"pl-c1\">DD</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">now</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">getDate</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-k\">var</span> <span class=\"pl-c1\">MM</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">now</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">getMonth</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">+</span> <span class=\"pl-c1\">1</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-k\">var</span> <span class=\"pl-c1\">YYYY</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">now</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">getFullYear</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-k\">if</span> <span class=\"pl-kos\">(</span><span class=\"pl-c1\">DD</span> <span class=\"pl-c1\">&lt;</span> <span class=\"pl-c1\">10</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-c1\">DD</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s\">'0'</span> <span class=\"pl-c1\">+</span> <span class=\"pl-c1\">DD</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span>\n\n<span class=\"pl-k\">if</span> <span class=\"pl-kos\">(</span><span class=\"pl-c1\">MM</span> <span class=\"pl-c1\">&lt;</span> <span class=\"pl-c1\">10</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-c1\">MM</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s\">'0'</span> <span class=\"pl-c1\">+</span> <span class=\"pl-c1\">MM</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span>\n\n<span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-c1\">MM</span> <span class=\"pl-c1\">+</span> <span class=\"pl-s\">'-'</span> <span class=\"pl-c1\">+</span> <span class=\"pl-c1\">DD</span> <span class=\"pl-c1\">+</span> <span class=\"pl-s\">'-'</span> <span class=\"pl-c1\">+</span> <span class=\"pl-c1\">YYYY</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span> <span class=\"pl-c\">// 03-30-2016</span></pre></div>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"console.log(moment(new Date(), 'MM-DD-YYYY'));\"><pre lang=\"MomentJS\" class=\"notranslate\"><code>console.log(moment(new Date(), 'MM-DD-YYYY'));\n</code></pre></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"// hh:mm (12 hour time with am/pm)\nvar now = new Date();\nvar hours = now.getHours();\nvar minutes = now.getMinutes();\nvar amPm = hours &gt;= 12 ? 'pm' : 'am';\n\nhours = hours % 12;\nhours = hours ? hours : 12;\nminutes = minutes &lt; 10 ? '0' + minutes : minutes;\n\nconsole.log(hours + ':' + minutes + ' ' + amPm); // 1:43 am\"><pre><span class=\"pl-c\">// hh:mm (12 hour time with am/pm)</span>\n<span class=\"pl-k\">var</span> <span class=\"pl-s1\">now</span> <span class=\"pl-c1\">=</span> <span class=\"pl-k\">new</span> <span class=\"pl-v\">Date</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-k\">var</span> <span class=\"pl-s1\">hours</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">now</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">getHours</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-k\">var</span> <span class=\"pl-s1\">minutes</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">now</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">getMinutes</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-k\">var</span> <span class=\"pl-s1\">amPm</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">hours</span> <span class=\"pl-c1\">&gt;=</span> <span class=\"pl-c1\">12</span> ? <span class=\"pl-s\">'pm'</span> : <span class=\"pl-s\">'am'</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-s1\">hours</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">hours</span> <span class=\"pl-c1\">%</span> <span class=\"pl-c1\">12</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-s1\">hours</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">hours</span> ? <span class=\"pl-s1\">hours</span> : <span class=\"pl-c1\">12</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-s1\">minutes</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">minutes</span> <span class=\"pl-c1\">&lt;</span> <span class=\"pl-c1\">10</span> ? <span class=\"pl-s\">'0'</span> <span class=\"pl-c1\">+</span> <span class=\"pl-s1\">minutes</span> : <span class=\"pl-s1\">minutes</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">hours</span> <span class=\"pl-c1\">+</span> <span class=\"pl-s\">':'</span> <span class=\"pl-c1\">+</span> <span class=\"pl-s1\">minutes</span> <span class=\"pl-c1\">+</span> <span class=\"pl-s\">' '</span> <span class=\"pl-c1\">+</span> <span class=\"pl-s1\">amPm</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span> <span class=\"pl-c\">// 1:43 am</span></pre></div>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"console.log(moment(new Date(), 'hh:mm A'));\"><pre lang=\"MomentJS\" class=\"notranslate\"><code>console.log(moment(new Date(), 'hh:mm A'));\n</code></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Next week Date object</h4><a id=\"user-content-next-week-date-object\" class=\"anchor\" aria-label=\"Permalink: Next week Date object\" href=\"#next-week-date-object\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"var today = new Date();\nvar nextWeek = new Date(today.getTime() + 7 * 24 * 60 * 60 * 1000);\"><pre><span class=\"pl-k\">var</span> <span class=\"pl-s1\">today</span> <span class=\"pl-c1\">=</span> <span class=\"pl-k\">new</span> <span class=\"pl-v\">Date</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-k\">var</span> <span class=\"pl-s1\">nextWeek</span> <span class=\"pl-c1\">=</span> <span class=\"pl-k\">new</span> <span class=\"pl-v\">Date</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">today</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">getTime</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">+</span> <span class=\"pl-c1\">7</span> <span class=\"pl-c1\">*</span> <span class=\"pl-c1\">24</span> <span class=\"pl-c1\">*</span> <span class=\"pl-c1\">60</span> <span class=\"pl-c1\">*</span> <span class=\"pl-c1\">60</span> <span class=\"pl-c1\">*</span> <span class=\"pl-c1\">1000</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"moment().add(7, 'days');\"><pre lang=\"MomentJS\" class=\"notranslate\"><code>moment().add(7, 'days');\n</code></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Yesterday Date object</h4><a id=\"user-content-yesterday-date-object\" class=\"anchor\" aria-label=\"Permalink: Yesterday Date object\" href=\"#yesterday-date-object\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"var today = new Date();\nvar yesterday = date.setDate(date.getDate() - 1);\"><pre><span class=\"pl-k\">var</span> <span class=\"pl-s1\">today</span> <span class=\"pl-c1\">=</span> <span class=\"pl-k\">new</span> <span class=\"pl-v\">Date</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-k\">var</span> <span class=\"pl-s1\">yesterday</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">date</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">setDate</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">date</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">getDate</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">-</span> <span class=\"pl-c1\">1</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"moment().add(-1, 'days');\"><pre lang=\"MomentJS\" class=\"notranslate\"><code>moment().add(-1, 'days');\n</code></pre></div>\n<p dir=\"auto\">🔝 <sub><a href=\"#table-of-contents\"><strong>back to top</strong></a></sub></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Mongoose Cheatsheet</h3><a id=\"user-content-mongoose-cheatsheet\" class=\"anchor\" aria-label=\"Permalink: Mongoose Cheatsheet\" href=\"#mongoose-cheatsheet\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Find all users:</h4><a id=\"user-content-find-all-users\" class=\"anchor\" aria-label=\"Permalink: Find all users:\" href=\"#find-all-users\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"User.find((err, users) =&gt; {\n console.log(users);\n});\"><pre><span class=\"pl-v\">User</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">find</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">err</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">users</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">users</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Find a user by email:</h4><a id=\"user-content-find-a-user-by-email\" class=\"anchor\" aria-label=\"Permalink: Find a user by email:\" href=\"#find-a-user-by-email\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"let userEmail = '[email protected]';\nUser.findOne({ email: userEmail }, (err, user) =&gt; {\n console.log(user);\n});\"><pre><span class=\"pl-k\">let</span> <span class=\"pl-s1\">userEmail</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s\">'[email protected]'</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-v\">User</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">findOne</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">{</span> <span class=\"pl-c1\">email</span>: <span class=\"pl-s1\">userEmail</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">err</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">user</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">user</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Find 5 most recent user accounts:</h4><a id=\"user-content-find-5-most-recent-user-accounts\" class=\"anchor\" aria-label=\"Permalink: Find 5 most recent user accounts:\" href=\"#find-5-most-recent-user-accounts\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"User\n .find()\n .sort({ _id: -1 })\n .limit(5)\n .exec((err, users) =&gt; {\n console.log(users);\n });\"><pre><span class=\"pl-v\">User</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">find</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">sort</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">{</span> <span class=\"pl-c1\">_id</span>: <span class=\"pl-c1\">-</span><span class=\"pl-c1\">1</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">limit</span><span class=\"pl-kos\">(</span><span class=\"pl-c1\">5</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">exec</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">err</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">users</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">users</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Get the total count of a field from all documents:</h4><a id=\"user-content-get-the-total-count-of-a-field-from-all-documents\" class=\"anchor\" aria-label=\"Permalink: Get the total count of a field from all documents:\" href=\"#get-the-total-count-of-a-field-from-all-documents\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Let's suppose that each user has a <code>votes</code> field and you would like to count the total number of votes in your database across all users. One very inefficient way would be to loop through each document and manually accumulate the count. Or you could use <a href=\"https://docs.mongodb.org/manual/core/aggregation-introduction/\" rel=\"nofollow\">MongoDB Aggregation Framework</a> instead:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"User.aggregate({ $group: { _id: null, total: { $sum: '$votes' } } }, (err, votesCount) =&gt; {\n console.log(votesCount.total);\n});\"><pre><span class=\"pl-v\">User</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">aggregate</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">{</span> <span class=\"pl-c1\">$group</span>: <span class=\"pl-kos\">{</span> <span class=\"pl-c1\">_id</span>: <span class=\"pl-c1\">null</span><span class=\"pl-kos\">,</span> <span class=\"pl-c1\">total</span>: <span class=\"pl-kos\">{</span> <span class=\"pl-c1\">$sum</span>: <span class=\"pl-s\">'$votes'</span> <span class=\"pl-kos\">}</span> <span class=\"pl-kos\">}</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">err</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">votesCount</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">votesCount</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">total</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">🔝 <sub><a href=\"#table-of-contents\"><strong>back to top</strong></a></sub></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Docker</h2><a id=\"user-content-docker\" class=\"anchor\" aria-label=\"Permalink: Docker\" href=\"#docker\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You will need to install docker and docker-compose on your system. If you are using WSL, you will need to install Docker Desktop on Windows and docker-compose on WSL.</p>\n<ul dir=\"auto\">\n<li>\n<p dir=\"auto\"><a href=\"https://docs.docker.com/engine/installation/\" rel=\"nofollow\">Docker installation</a></p>\n</li>\n<li>\n<p dir=\"auto\"><a href=\"https://docs.docker.com/toolbox/faqs/troubleshoot/\" rel=\"nofollow\">Common problems setting up docker</a></p>\n</li>\n</ul>\n<p dir=\"auto\">After installing docker, start the application with the following commands :</p>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"# To build the project while supressing most of the build messages\ndocker-compose build web\n\n# To build the project without supressing the build messages or using cached data\n docker-compose build --no-cache --progress=plain web\n\n# To start the application (or to restart after making changes to the source code)\ndocker-compose up web\n\"><pre class=\"notranslate\"><code># To build the project while supressing most of the build messages\ndocker-compose build web\n\n# To build the project without supressing the build messages or using cached data\n docker-compose build --no-cache --progress=plain web\n\n# To start the application (or to restart after making changes to the source code)\ndocker-compose up web\n\n</code></pre></div>\n<p dir=\"auto\">To view the app, find your docker IP address + port 8080 ( this will typically be <code>http://localhost:8080/</code> ). To use a port other than 8080, you would need to modify the port in app.js, Dockerfile, and docker-compose.yml.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Deployment</h2><a id=\"user-content-deployment\" class=\"anchor\" aria-label=\"Permalink: Deployment\" href=\"#deployment\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">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, but they are my top picks. Additionally, you can create an account with <strong>MongoDB Atlas</strong> and then pick one of the providers below. Again, there are plenty of other choices, and you are not limited to just the ones listed below.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Deployment to Render</h3><a id=\"user-content-deployment-to-render\" class=\"anchor\" aria-label=\"Permalink: Deployment to Render\" href=\"#deployment-to-render\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/81ee349921b0eba24ab04f62f6792fb059c25cc405c18b9afa5ec95746b470c2/68747470733a2f2f63646e2e627574746572636d732e636f6d2f7030494863767752536c4f41456a426354663043\"><img src=\"https://camo.githubusercontent.com/81ee349921b0eba24ab04f62f6792fb059c25cc405c18b9afa5ec95746b470c2/68747470733a2f2f63646e2e627574746572636d732e636f6d2f7030494863767752536c4f41456a426354663043\" width=\"200\" data-canonical-src=\"https://cdn.buttercms.com/p0IHcvwRSlOAEjBcTf0C\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\">Render provides free nodejs hosting for repos on Github and Gitlab.</p>\n<ul dir=\"auto\">\n<li>Sign up for a free Individual account at <a href=\"https://render.com\" rel=\"nofollow\">https://render.com</a></li>\n<li>Link your Github account</li>\n<li>Create a Web Service</li>\n<li>Add your repo and add your environment variables under the Advanced settings.\nNote 1: The automated deployments may not work, and you may need to manually trigger deployments after your commits.</li>\n</ul>\n<hr>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Hosted MongoDB Atlas</h3><a id=\"user-content-hosted-mongodb-atlas\" class=\"anchor\" aria-label=\"Permalink: Hosted MongoDB Atlas\" href=\"#hosted-mongodb-atlas\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/fea36f84d7e94aa81ebb173651b6aa118c4d049e5fdd03541526c757a6cf4961/68747470733a2f2f7777772e6d6f6e676f64622e636f6d2f6173736574732f696d616765732f676c6f62616c2f4d6f6e676f44425f4c6f676f5f4461726b2e737667\"><img src=\"https://camo.githubusercontent.com/fea36f84d7e94aa81ebb173651b6aa118c4d049e5fdd03541526c757a6cf4961/68747470733a2f2f7777772e6d6f6e676f64622e636f6d2f6173736574732f696d616765732f676c6f62616c2f4d6f6e676f44425f4c6f676f5f4461726b2e737667\" width=\"200\" data-canonical-src=\"https://www.mongodb.com/assets/images/global/MongoDB_Logo_Dark.svg\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>Go to <a href=\"https://www.mongodb.com/cloud/atlas\" rel=\"nofollow\">https://www.mongodb.com/cloud/atlas</a></li>\n<li>Click the green <strong>Get started free</strong> button</li>\n<li>Fill in your information then hit <strong>Get started free</strong></li>\n<li>You will be redirected to Create New Cluster page.</li>\n<li>Select a <strong>Cloud Provider and Region</strong> (such as AWS and a free tier region)</li>\n<li>Select cluster Tier to Free forever <strong>Shared</strong> Cluster</li>\n<li>Give Cluster a name (default: Cluster0)</li>\n<li>Click on green <strong>⚡Create Cluster button</strong></li>\n<li>Now, to access your database you need to create a DB user. To create a new MongoDB user, from the <strong>Clusters view</strong>, select the <strong>Security tab</strong></li>\n<li>Under the <strong>MongoDB Users</strong> tab, click on <strong>+Add New User</strong></li>\n<li>Fill in a username and password and give it either <strong>Atlas Admin</strong> User Privilege</li>\n<li>Next, you will need to create an IP address whitelist and obtain the connection URI. In the Clusters view, under the cluster details (i.e. SANDBOX - Cluster0), click on the <strong>CONNECT</strong> button.</li>\n<li>Under section <strong>(1) Check the IP Whitelist</strong>, click on <strong>ALLOW ACCESS FROM ANYWHERE</strong>. The form will add a field with <code>0.0.0.0/0</code>. Click <strong>SAVE</strong> to save the <code>0.0.0.0/0</code> whitelist.</li>\n<li>Under section <strong>(2) Choose a connection method</strong>, click on <strong>Connect Your Application</strong></li>\n<li>In the new screen, select <strong>Node.js</strong> as Driver and version <strong>3.6 or later</strong>.</li>\n<li>Finally, copy the URI connection string and replace the URI in MONGODB_URI of <code>.env.example</code> with this URI string. Make sure to replace the with the db User password that you created under the Security tab.</li>\n<li>Note that after some of the steps in the Atlas UI, you may see a banner stating <code>We are deploying your changes</code>. You will need to wait for the deployment to finish before using the DB in your application.</li>\n</ul>\n<hr>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">OpenShift</h3><a id=\"user-content-openshift\" class=\"anchor\" aria-label=\"Permalink: OpenShift\" href=\"#openshift\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/f5607cef631c68c4e605fc90cb1ebb18b3abcb6655dffaa0d7bea220a415035a/687474703a2f2f7777772e6f70656e636c6f7564636f6e662e636f6d2f696d616765732f6f70656e73686966745f6c6f676f2e706e67\"><img src=\"https://camo.githubusercontent.com/f5607cef631c68c4e605fc90cb1ebb18b3abcb6655dffaa0d7bea220a415035a/687474703a2f2f7777772e6f70656e636c6f7564636f6e662e636f6d2f696d616765732f6f70656e73686966745f6c6f676f2e706e67\" width=\"200\" data-canonical-src=\"http://www.opencloudconf.com/images/openshift_logo.png\" style=\"max-width: 100%;\"></a></p>\n**NOTE** *These instructions might be out of date due to changes in OpenShift. Render is currently a good free alternative. If you know the new process, please feel free to help us update this page*\n<ul dir=\"auto\">\n<li>First, install this Ruby gem: <code>sudo gem install rhc</code> 💎</li>\n<li>Run <code>rhc login</code> and enter your OpenShift credentials</li>\n<li>From your app directory run <code>rhc app create MyApp nodejs-0.10</code></li>\n<li><strong>Note:</strong> <em>MyApp</em> is the name of your app (no spaces)</li>\n<li>Once that is done, you will be provided with <strong>URL</strong>, <strong>SSH</strong> and <strong>Git Remote</strong> links</li>\n<li>Visit provided <strong>URL</strong>, and you should see the <em>Welcome to your Node.js application on OpenShift</em> page</li>\n<li>Copy and paste <strong>Git Remote</strong> into <code>git remote add openshift YOUR_GIT_REMOTE</code></li>\n<li>Before you push your app, you need to do a few modifications to your code</li>\n</ul>\n<p dir=\"auto\">Add these two lines to <code>app.js</code>, just place them anywhere before <code>app.listen()</code>:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"var IP_ADDRESS = process.env.OPENSHIFT_NODEJS_IP || '127.0.0.1';\nvar PORT = process.env.OPENSHIFT_NODEJS_PORT || 8080;\"><pre><span class=\"pl-k\">var</span> <span class=\"pl-c1\">IP_ADDRESS</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">process</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">env</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">OPENSHIFT_NODEJS_IP</span> <span class=\"pl-c1\">||</span> <span class=\"pl-s\">'127.0.0.1'</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-k\">var</span> <span class=\"pl-c1\">PORT</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">process</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">env</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">OPENSHIFT_NODEJS_PORT</span> <span class=\"pl-c1\">||</span> <span class=\"pl-c1\">8080</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">Then change <code>app.listen()</code> to:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"app.listen(PORT, IP_ADDRESS,() =&gt; {\n console.log(`Express server listening on port ${PORT} in ${app.settings.env} mode`);\n});\"><pre><span class=\"pl-s1\">app</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">listen</span><span class=\"pl-kos\">(</span><span class=\"pl-c1\">PORT</span><span class=\"pl-kos\">,</span> <span class=\"pl-c1\">IP_ADDRESS</span><span class=\"pl-kos\">,</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">`Express server listening on port <span class=\"pl-s1\"><span class=\"pl-kos\">${</span><span class=\"pl-c1\">PORT</span><span class=\"pl-kos\">}</span></span> in <span class=\"pl-s1\"><span class=\"pl-kos\">${</span><span class=\"pl-s1\">app</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">settings</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">env</span><span class=\"pl-kos\">}</span></span> mode`</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">Add this to <code>package.json</code>, after <em>name</em> and <em>version</em>. This is necessary because, by default, OpenShift looks for <code>server.js</code> file. And by specifying <code>supervisor app.js</code> it will automatically restart the server when node.js process crashes.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&quot;main&quot;: &quot;app.js&quot;,\n&quot;scripts&quot;: {\n &quot;start&quot;: &quot;supervisor app.js&quot;\n},\"><pre><span class=\"pl-s\">\"main\"</span>: <span class=\"pl-s\">\"app.js\"</span><span class=\"pl-kos\">,</span>\n<span class=\"pl-s\">\"scripts\"</span>: <span class=\"pl-kos\">{</span>\n <span class=\"pl-s\">\"start\"</span>: <span class=\"pl-s\">\"supervisor app.js\"</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">,</span></pre></div>\n<ul dir=\"auto\">\n<li>Finally, you can now push your code to OpenShift by running <code>git push -f openshift master</code></li>\n<li><strong>Note:</strong> The first time you run this command, you have to pass <code>-f</code> (force) flag because OpenShift creates a dummy server with the welcome page when you create a new Node.js app. Passing <code>-f</code> flag will override everything with your <em>Hackathon Starter</em> project repository. <strong>Do not</strong> run <code>git pull</code> as it will create unnecessary merge conflicts.</li>\n<li>And you are done!</li>\n</ul>\n<hr>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Azure</h3><a id=\"user-content-azure\" class=\"anchor\" aria-label=\"Permalink: Azure\" href=\"#azure\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/b74d0192460dca6cc0550556870a69123b60fce8da97333ef0d178a839019c47/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f662f66662f57696e646f77735f417a7572655f6c6f676f2e706e67\"><img src=\"https://camo.githubusercontent.com/b74d0192460dca6cc0550556870a69123b60fce8da97333ef0d178a839019c47/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f662f66662f57696e646f77735f417a7572655f6c6f676f2e706e67\" width=\"200\" data-canonical-src=\"https://upload.wikimedia.org/wikipedia/commons/f/ff/Windows_Azure_logo.png\" style=\"max-width: 100%;\"></a></p>\n**NOTE** *Beyond the initial 12 month trial of Azure, the platform does not seem to offer a free tier for hosting NodeJS apps. If you are looking for a free tier service to host your app, Render might be a better choice at this point*\n<ul dir=\"auto\">\n<li>Login to <a href=\"https://manage.windowsazure.com/\" rel=\"nofollow\">Windows Azure Management Portal</a></li>\n<li>Click the <strong>+ NEW</strong> button on the bottom left of the portal</li>\n<li>Click <strong>COMPUTE</strong>, then <strong>WEB APP</strong>, then <strong>QUICK CREATE</strong></li>\n<li>Enter a name for <strong>URL</strong> and select the datacenter <strong>REGION</strong> for your web site</li>\n<li>Click on <strong>CREATE WEB APP</strong> button</li>\n<li>Once the web site status changes to <em>Running</em>, click on the name of the web site to access the Dashboard</li>\n<li>At the bottom right of the Quickstart page, select <strong>Set up a deployment from source control</strong></li>\n<li>Select <strong>Local Git repository</strong> from the list, and then click the arrow</li>\n<li>To enable Git publishing, Azure will ask you to create a user name and password</li>\n<li>Once the Git repository is ready, you will be presented with a <strong>GIT URL</strong></li>\n<li>Inside your <em>Hackathon Starter</em> directory, run <code>git remote add azure [Azure Git URL]</code></li>\n<li>To push your changes run <code>git push azure master</code></li>\n<li><strong>Note:</strong> <em>You will be prompted for the password you created earlier</em></li>\n<li>On <strong>Deployments</strong> tab of your Windows Azure Web App, you will see the deployment history</li>\n</ul>\n<hr>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">IBM Bluemix Cloud Platform</h2><a id=\"user-content-ibm-bluemix-cloud-platform\" class=\"anchor\" aria-label=\"Permalink: IBM Bluemix Cloud Platform\" href=\"#ibm-bluemix-cloud-platform\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><strong>NOTE</strong> <em>At this point it appears that Bluemix's free tier to host NodeJS apps is limited to 30 days. If you are looking for a free tier service to host your app, Render might be a better choice at this point</em></p>\n<ul dir=\"auto\">\n<li>\n<p dir=\"auto\">Create a Bluemix Account</p>\n<p dir=\"auto\"><a href=\"https://console.ng.bluemix.net/registration/?target=%2Fdashboard%2Fapps\" rel=\"nofollow\">Sign up</a> for Bluemix, or use an existing account.</p>\n</li>\n<li>\n<p dir=\"auto\">Download and install the <a href=\"https://github.com/cloudfoundry/cli\">Cloud Foundry CLI</a> to push your applications to Bluemix.</p>\n</li>\n<li>\n<p dir=\"auto\">Create a <code>manifest.yml</code> file in the root of your application.</p>\n</li>\n</ul>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"applications:\n- name: &lt;your-app-name&gt;\n host: &lt;your-app-host&gt;\n memory: 128M\n services:\n - myMongo-db-name\"><pre class=\"notranslate\"><code>applications:\n- name: &lt;your-app-name&gt;\n host: &lt;your-app-host&gt;\n memory: 128M\n services:\n - myMongo-db-name\n</code></pre></div>\n<p dir=\"auto\">The host you use will determinate your application URL initially, e.g. <code>&lt;host&gt;.mybluemix.net</code>.\nThe service name 'myMongo-db-name' is a declaration of your MongoDB service. If you are using other services like Watson for example, then you would declare them the same way.</p>\n<ul dir=\"auto\">\n<li>Connect and login to Bluemix via the Cloud-foundry CLI</li>\n</ul>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"$ cf login -a https://api.ng.bluemix.net\"><pre class=\"notranslate\"><code>$ cf login -a https://api.ng.bluemix.net\n</code></pre></div>\n<ul dir=\"auto\">\n<li>Create a <a href=\"https://www.ng.bluemix.net/docs/#services/MongoDB/index.html#MongoDB\" rel=\"nofollow\">MongoDB service</a></li>\n</ul>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"$ cf create-service mongodb 100 [your-service-name]\"><pre class=\"notranslate\"><code>$ cf create-service mongodb 100 [your-service-name]\n</code></pre></div>\n<p dir=\"auto\"><strong>Note:</strong> this is a free and experiment verion of MongoDB instance.\nUse the MongoDB by Compose instance for production applications:</p>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"$ cf create-service compose-for-mongodb Standard [your-service-name]'\"><pre class=\"notranslate\"><code>$ cf create-service compose-for-mongodb Standard [your-service-name]'\n</code></pre></div>\n<ul dir=\"auto\">\n<li>\n<p dir=\"auto\">Push the application</p>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"$ cf push\"><pre class=\"notranslate\"><code>$ cf push\n</code></pre></div>\n<div class=\"snippet-clipboard-content notranslate position-relative overflow-auto\" data-snippet-clipboard-copy-content=\"$ cf env &lt;your-app-name &gt;\n(To view the *environment variables* created for your application)\n\"><pre class=\"notranslate\"><code>$ cf env &lt;your-app-name &gt;\n(To view the *environment variables* created for your application)\n\n</code></pre></div>\n</li>\n</ul>\n<p dir=\"auto\"><strong>Done</strong>, now go to the staging domain (<code>&lt;host&gt;.mybluemix.net</code>) and see your app running.</p>\n<ul dir=\"auto\">\n<li><a href=\"https://ibm-bluemix.github.io/\" rel=\"nofollow\">More Bluemix samples</a></li>\n<li><a href=\"https://github.com/IBM-Bluemix/todo-apps\">Simple ToDo app in a programming language of your choice</a></li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">IBM Watson</h3><a id=\"user-content-ibm-watson\" class=\"anchor\" aria-label=\"Permalink: IBM Watson\" href=\"#ibm-watson\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Be sure to check out the full list of Watson services to forwarder enhance your application functionality with a little effort. Watson services are easy to get going; it is simply a RESTful API call. Here is an example of a <a href=\"https://tone-analyzer-demo.mybluemix.net/\" rel=\"nofollow\">Watson Toner Analyzer</a> to understand the emotional context of a piece of text that you send to Watson.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Watson catalog of services</h4><a id=\"user-content-watson-catalog-of-services\" class=\"anchor\" aria-label=\"Permalink: Watson catalog of services\" href=\"#watson-catalog-of-services\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><strong><a href=\"https://www.ibm.com/products/watson-assistant\" rel=\"nofollow\">Virtual Assistant</a></strong> - Deliver consistent and intelligent customer care across all channels and touchpoints with conversational AI.</p>\n<p dir=\"auto\"><strong><a href=\"https://www.ibm.com/products/natural-language-understanding\" rel=\"nofollow\">Natural Language Understanding</a></strong> - Analyze text to extract meta-data from content such as concepts, entities, keywords and more.</p>\n<p dir=\"auto\"><strong><a href=\"https://www.ibm.com/products/watson-discovery\" rel=\"nofollow\">Discovery</a></strong> - Accelerate business decisions and processes with an AI-powered intelligent document understanding and content analysis platform.</p>\n<p dir=\"auto\"><strong><a href=\"https://www.ibm.com/products/watson-orchestrate\" rel=\"nofollow\">Orchestrate</a></strong> - Hand off tedious tasks to Watson and never work the same way again.</p>\n<p dir=\"auto\"><a href=\"https://www.ibm.com/watson#work-with-watson\" rel=\"nofollow\">List of Watson Services</a>.</p>\n<hr>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Google Cloud Platform</h3><a id=\"user-content-google-cloud-platform\" class=\"anchor\" aria-label=\"Permalink: Google Cloud Platform\" href=\"#google-cloud-platform\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://avatars2.githubusercontent.com/u/2810941?v=3&amp;s=64\"><img src=\"https://avatars2.githubusercontent.com/u/2810941?v=3&amp;s=64\" width=\"64\" style=\"max-width: 100%;\"></a></p>\n<ul dir=\"auto\">\n<li>\n<p dir=\"auto\"><a href=\"https://nodejs.org/\" rel=\"nofollow\">Download and install Node.js</a></p>\n</li>\n<li>\n<p dir=\"auto\"><a href=\"https://console.cloud.google.com/project\" rel=\"nofollow\">Select or create</a> a Google Cloud Platform Console project</p>\n</li>\n<li>\n<p dir=\"auto\"><a href=\"https://support.google.com/cloud/answer/6293499#enable-billing\" rel=\"nofollow\">Enable billing</a> for your project (there's a $300 free trial)</p>\n</li>\n<li>\n<p dir=\"auto\">Install and initialize the <a href=\"https://cloud.google.com/sdk/docs/quickstarts\" rel=\"nofollow\">Google Cloud SDK</a></p>\n</li>\n<li>\n<p dir=\"auto\">Create an <code>app.yaml</code> file at the root of your <code>hackathon-starter</code> folder with the following contents:</p>\n<div class=\"highlight highlight-source-yaml notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"runtime: nodejs\nenv: flex\nmanual_scaling:\n instances: 1\"><pre><span class=\"pl-ent\">runtime</span>: <span class=\"pl-s\">nodejs</span>\n<span class=\"pl-ent\">env</span>: <span class=\"pl-s\">flex</span>\n<span class=\"pl-ent\">manual_scaling</span>:\n <span class=\"pl-ent\">instances</span>: <span class=\"pl-c1\">1</span></pre></div>\n</li>\n<li>\n<p dir=\"auto\">Make sure you've set <code>MONGODB_URI</code> in <code>.env.example</code></p>\n</li>\n<li>\n<p dir=\"auto\">Run the following command to deploy the <code>hackathon-starter</code> app:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"gcloud app deploy\"><pre>gcloud app deploy</pre></div>\n</li>\n<li>\n<p dir=\"auto\"><a href=\"https://console.cloud.google.com/appengine\" rel=\"nofollow\">Monitor your deployed app</a> in the Cloud Console</p>\n</li>\n<li>\n<p dir=\"auto\"><a href=\"https://console.cloud.google.com/logs/viewer\" rel=\"nofollow\">View the logs</a> for your app in the Cloud Console</p>\n</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Production</h2><a id=\"user-content-production\" class=\"anchor\" aria-label=\"Permalink: Production\" href=\"#production\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">If you are starting with this boilerplate to build an application for prod deployment, or if after your hackathon you would like to get your project hardened for production use, see <a href=\"https://github.com/sahat/hackathon-starter/blob/master/prod-checklist.md\">prod-checklist.md</a>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Changelog</h2><a id=\"user-content-changelog\" class=\"anchor\" aria-label=\"Permalink: Changelog\" href=\"#changelog\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You can find the changelog for the project in: <a href=\"https://github.com/sahat/hackathon-starter/blob/master/CHANGELOG.md\">CHANGELOG.md</a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Contributing</h2><a id=\"user-content-contributing\" class=\"anchor\" aria-label=\"Permalink: Contributing\" href=\"#contributing\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">If something is unclear, confusing, or needs to be refactored, please let me know.\nPull requests are always welcome, but due to the opinionated nature of this project, I cannot accept every pull request. Please open an issue before submitting a pull request. This project uses <a href=\"https://github.com/airbnb/javascript\">Airbnb JavaScript Style Guide</a> with a few minor exceptions. If you are submitting a pull request that involves Pug templates, please make sure you are using <em>spaces</em>, not tabs.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">License</h2><a id=\"user-content-license\" class=\"anchor\" aria-label=\"Permalink: License\" href=\"#license\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The MIT License (MIT)</p>\n<p dir=\"auto\">Copyright (c) 2014-2023 Sahat Yalkabov</p>\n<p dir=\"auto\">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:</p>\n<p dir=\"auto\">The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>\n<p dir=\"auto\">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.</p>\n</article>",
"loaded": true,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": [
{
"level": 1,
"text": "\nHackathon Starter",
"anchor": "hackathon-starter",
"htmlText": "\nHackathon Starter"
},
{
"level": 3,
"text": "Testimonials",
"anchor": "testimonials",
"htmlText": "Testimonials"
},
{
"level": 4,
"text": "Modern Theme",
"anchor": "modern-theme",
"htmlText": "Modern Theme"
},
{
"level": 4,
"text": "Flatly Bootstrap Theme",
"anchor": "flatly-bootstrap-theme",
"htmlText": "Flatly Bootstrap Theme"
},
{
"level": 4,
"text": "API Examples",
"anchor": "api-examples",
"htmlText": "API Examples"
},
{
"level": 2,
"text": "Table of Contents",
"anchor": "table-of-contents",
"htmlText": "Table of Contents"
},
{
"level": 2,
"text": "Features",
"anchor": "features",
"htmlText": "Features"
},
{
"level": 2,
"text": "Prerequisites",
"anchor": "prerequisites",
"htmlText": "Prerequisites"
},
{
"level": 2,
"text": "Getting Started",
"anchor": "getting-started",
"htmlText": "Getting Started"
},
{
"level": 1,
"text": "Obtaining API Keys",
"anchor": "obtaining-api-keys",
"htmlText": "Obtaining API Keys"
},
{
"level": 2,
"text": "SMTP",
"anchor": "smtp",
"htmlText": "SMTP"
},
{
"level": 2,
"text": "Project Structure",
"anchor": "project-structure",
"htmlText": "Project Structure"
},
{
"level": 2,
"text": "List of Packages",
"anchor": "list-of-packages",
"htmlText": "List of Packages"
},
{
"level": 2,
"text": "Useful Tools and Resources",
"anchor": "useful-tools-and-resources",
"htmlText": "Useful Tools and Resources"
},
{
"level": 2,
"text": "Recommended Design Resources",
"anchor": "recommended-design-resources",
"htmlText": "Recommended Design Resources"
},
{
"level": 2,
"text": "Recommended Node.js Libraries",
"anchor": "recommended-nodejs-libraries",
"htmlText": "Recommended Node.js Libraries"
},
{
"level": 2,
"text": "Recommended Client-side Libraries",
"anchor": "recommended-client-side-libraries",
"htmlText": "Recommended Client-side Libraries"
},
{
"level": 2,
"text": "Pro Tips",
"anchor": "pro-tips",
"htmlText": "Pro Tips"
},
{
"level": 2,
"text": "FAQ",
"anchor": "faq",
"htmlText": "FAQ"
},
{
"level": 3,
"text": "Why do I get 403 Error: Forbidden when submitting a form?",
"anchor": "why-do-i-get-403-error-forbidden-when-submitting-a-form",
"htmlText": "Why do I get 403 Error: Forbidden when submitting a form?"
},
{
"level": 3,
"text": "I am getting MongoDB Connection Error, how do I fix it?",
"anchor": "i-am-getting-mongodb-connection-error-how-do-i-fix-it",
"htmlText": "I am getting MongoDB Connection Error, how do I fix it?"
},
{
"level": 3,
"text": "I get an error when I deploy my app, why?",
"anchor": "i-get-an-error-when-i-deploy-my-app-why",
"htmlText": "I get an error when I deploy my app, why?"
},
{
"level": 3,
"text": "Why do you have all routes defined in app.js?",
"anchor": "why-do-you-have-all-routes-defined-in-appjs",
"htmlText": "Why do you have all routes defined in app.js?"
},
{
"level": 2,
"text": "How It Works (mini guides)",
"anchor": "how-it-works-mini-guides",
"htmlText": "How It Works (mini guides)"
},
{
"level": 3,
"text": "Custom HTML and CSS Design 101",
"anchor": "custom-html-and-css-design-101",
"htmlText": "Custom HTML and CSS Design 101"
},
{
"level": 3,
"text": "How do flash messages work in this project?",
"anchor": "how-do-flash-messages-work-in-this-project",
"htmlText": "How do flash messages work in this project?"
},
{
"level": 3,
"text": "How do I create a new page?",
"anchor": "how-do-i-create-a-new-page",
"htmlText": "How do I create a new page?"
},
{
"level": 3,
"text": "How do I use Socket.io with Hackathon Starter?",
"anchor": "how-do-i-use-socketio-with-hackathon-starter",
"htmlText": "How do I use Socket.io with Hackathon Starter?"
},
{
"level": 2,
"text": "Cheatsheets",
"anchor": "cheatsheets",
"htmlText": "Cheatsheets"
},
{
"level": 3,
"text": " ES6 Cheatsheet",
"anchor": "-es6-cheatsheet",
"htmlText": " ES6 Cheatsheet"
},
{
"level": 4,
"text": "Declarations",
"anchor": "declarations",
"htmlText": "Declarations"
},
{
"level": 4,
"text": "Template Strings",
"anchor": "template-strings",
"htmlText": "Template Strings"
},
{
"level": 4,
"text": "Modules",
"anchor": "modules",
"htmlText": "Modules"
},
{
"level": 4,
"text": "Spread Operator",
"anchor": "spread-operator",
"htmlText": "Spread Operator"
},
{
"level": 4,
"text": "Promises",
"anchor": "promises",
"htmlText": "Promises"
},
{
"level": 4,
"text": "Arrow Functions",
"anchor": "arrow-functions",
"htmlText": "Arrow Functions"
},
{
"level": 4,
"text": "Classes",
"anchor": "classes",
"htmlText": "Classes"
},
{
"level": 3,
"text": " JavaScript Date Cheatsheet",
"anchor": "-javascript-date-cheatsheet",
"htmlText": " JavaScript Date Cheatsheet"
},
{
"level": 4,
"text": "Unix Timestamp (seconds)",
"anchor": "unix-timestamp-seconds",
"htmlText": "Unix Timestamp (seconds)"
},
{
"level": 4,
"text": "Add 30 minutes to a Date object",
"anchor": "add-30-minutes-to-a-date-object",
"htmlText": "Add 30 minutes to a Date object"
},
{
"level": 4,
"text": "Date Formatting",
"anchor": "date-formatting",
"htmlText": "Date Formatting"
},
{
"level": 4,
"text": "Next week Date object",
"anchor": "next-week-date-object",
"htmlText": "Next week Date object"
},
{
"level": 4,
"text": "Yesterday Date object",
"anchor": "yesterday-date-object",
"htmlText": "Yesterday Date object"
},
{
"level": 3,
"text": "Mongoose Cheatsheet",
"anchor": "mongoose-cheatsheet",
"htmlText": "Mongoose Cheatsheet"
},
{
"level": 4,
"text": "Find all users:",
"anchor": "find-all-users",
"htmlText": "Find all users:"
},
{
"level": 4,
"text": "Find a user by email:",
"anchor": "find-a-user-by-email",
"htmlText": "Find a user by email:"
},
{
"level": 4,
"text": "Find 5 most recent user accounts:",
"anchor": "find-5-most-recent-user-accounts",
"htmlText": "Find 5 most recent user accounts:"
},
{
"level": 4,
"text": "Get the total count of a field from all documents:",
"anchor": "get-the-total-count-of-a-field-from-all-documents",
"htmlText": "Get the total count of a field from all documents:"
},
{
"level": 2,
"text": "Docker",
"anchor": "docker",
"htmlText": "Docker"
},
{
"level": 2,
"text": "Deployment",
"anchor": "deployment",
"htmlText": "Deployment"
},
{
"level": 3,
"text": "Deployment to Render",
"anchor": "deployment-to-render",
"htmlText": "Deployment to Render"
},
{
"level": 3,
"text": "Hosted MongoDB Atlas",
"anchor": "hosted-mongodb-atlas",
"htmlText": "Hosted MongoDB Atlas"
},
{
"level": 3,
"text": "OpenShift",
"anchor": "openshift",
"htmlText": "OpenShift"
},
{
"level": 3,
"text": "Azure",
"anchor": "azure",
"htmlText": "Azure"
},
{
"level": 2,
"text": "IBM Bluemix Cloud Platform",
"anchor": "ibm-bluemix-cloud-platform",
"htmlText": "IBM Bluemix Cloud Platform"
},
{
"level": 3,
"text": "IBM Watson",
"anchor": "ibm-watson",
"htmlText": "IBM Watson"
},
{
"level": 4,
"text": "Watson catalog of services",
"anchor": "watson-catalog-of-services",
"htmlText": "Watson catalog of services"
},
{
"level": 3,
"text": "Google Cloud Platform",
"anchor": "google-cloud-platform",
"htmlText": "Google Cloud Platform"
},
{
"level": 2,
"text": "Production",
"anchor": "production",
"htmlText": "Production"
},
{
"level": 2,
"text": "Changelog",
"anchor": "changelog",
"htmlText": "Changelog"
},
{
"level": 2,
"text": "Contributing",
"anchor": "contributing",
"htmlText": "Contributing"
},
{
"level": 2,
"text": "License",
"anchor": "license",
"htmlText": "License"
}
],
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fsahat%2Fhackathon-starter"
}
},
{
"displayName": "LICENSE",
"repoName": "hackathon-starter",
"refName": "master",
"path": "LICENSE",
"preferredFileType": "license",
"tabName": "MIT",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fsahat%2Fhackathon-starter"
}
},
{
"displayName": "SECURITY.md",
"repoName": "hackathon-starter",
"refName": "master",
"path": "SECURITY.md",
"preferredFileType": "security",
"tabName": "Security",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fsahat%2Fhackathon-starter"
}
}
],
"overviewFilesProcessingTime": 0
}
},
"appPayload": {
"helpUrl": "https://docs.github.com",
"findFileWorkerPath": "/assets-cdn/worker/find-file-worker-1583894afd38.js",
"findInFileWorkerPath": "/assets-cdn/worker/find-in-file-worker-3a63a487027b.js",
"githubDevUrl": null,
"enabled_features": {
"code_nav_ui_events": false,
"overview_shared_code_dropdown_button": false,
"react_blob_overlay": false,
"copilot_conversational_ux_embedding_update": false,
"copilot_smell_icebreaker_ux": true,
"copilot_workspace": false
}
}
}
}
{
"accept-ranges": "bytes",
"cache-control": "max-age=0, private, must-revalidate",
"content-encoding": "gzip",
"content-security-policy": "default-src 'none'; base-uri 'self'; child-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com api.githubcopilot.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com/v1/engines/github-completion/completions proxy.enterprise.githubcopilot.com/v1/engines/github-completion/completions *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/",
"content-type": "text/html; charset=utf-8",
"date": "Sat, 27 Jul 2024 07:09:34 GMT",
"etag": "cc81b6af5bd5de7eb25a19128cb406f7",
"referrer-policy": "no-referrer-when-downgrade",
"server": "GitHub.com",
"set-cookie": "logged_in=no; Path=/; Domain=github.com; Expires=Sun, 27 Jul 2025 07:09:33 GMT; HttpOnly; Secure; SameSite=Lax",
"strict-transport-security": "max-age=31536000; includeSubdomains; preload",
"transfer-encoding": "chunked",
"vary": "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, Accept-Encoding, Accept, X-Requested-With",
"x-content-type-options": "nosniff",
"x-frame-options": "deny",
"x-github-request-id": "D536:8290F:1227F4D:172CCDC:66A49D2B",
"x-xss-protection": "0"
}