A Node-Typescript/Express Boilerplate with Authentication(Local, Github, Facebook, Twitter, Google, LinkedIn, Dropbox, Slack, Discord), Authorization, and CRUD functionality + PWA Support!
Live Demo: https://hackathon-slhbx5lcqq-uc.a.run.app
Jump to What's new?
A boilerplate for Node.js/Express(Typescript) web applications.
If you have attended any hackathons in the past, then you know how much time it takes toget 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 thencan other team members start contributing. Or how about doing something as simple as Sign in with Facebookauthentication? You can spend hours on it if you are not familiar with how OAuth 2.0 works.
The Node-Typescript/Express Hackathon Starter Kit is production ready with authentication, sessions, routing, CRUD functionality and PWA Support!
There are two ways to set this project up:
# Get the latest snapshot
git clone https://github.com/nerdeveloper/hackathon-starter-kit.git
# Change directory
cd hackathon-starter-kit
# Copy .env.example to .env
cp .env.variable.env variable.env
# Create a database (with MongoDB)
# Update variable.env file with database credentials
# DEV_MONGODB=mongodb://<username>:<password>@localhost/<database_name>
# Install NPM dependencies
npm install
# Then simply start your app
npm start
Warning: If you want to use some API that need https to work (for example Github or Facebook),you will need to download ngrok.You must start ngrok after starting the project.
# Install the ngrok package
npm i -g ngrok
# start ngrok to intercept the data exchanged on port 3000
ngrok http 3000
Next, you must use the https URL defined by ngrok inside your config file under site, for example, https://<subdomain>.ngrok.io
Note: I highly recommend installing Nodemon.It watches for any changes in your node.js app and automatically restarts theserver. Once installed, instead of node app.js
use NODE_ENV=development nodemon dist/server.js --public
. It willsave you a lot of time in the long run, because you won't need to manuallyrestart the server each time you make a small change in code. To install, runnpm install -g nodemon
or sudo npm i -g nodemon
This project offers Real time monitoring only suitable for development purposes.
# Ensure the project is up and running [npm start]
# Open http://localhost:3000/status in your broswer.
To use any of the included APIs or OAuth authentication methods, you will needto obtain appropriate credentials: Client ID, Client Secret, API Key, orUsername & Password. You will need to go through each provider to generate newcredentials.
localhost
login.pug
, register.pug
and contact.pug
under the attribute data-sitekey
.variable.env
Note: When you ready to deploy to production don't forget toadd your new URL to Authorized Javascript origins and Authorized redirect URI,e.g. http://my-awesome-app.herokuapp.com
andhttp://my-awesome-app.herokuapp.com/auth/google/callback
respectively.The same goes for other providers.`
variable.env
variable.env
localhost
under App Domainshttp://localhost:3000
under Site URLhttp://localhost:3000/auth/facebook/callback
under Valid OAuth redirect URIsNote: 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.
variable.env
filevariable.env
fileSign in at LinkedIn Developer Network
From the account name dropdown menu select API Keys
Click + Add New Application button
Fill out all the required fields
For Default Application Permissions make sure at least the following is checked:
r_liteprofile
r_emailaddress
Finish by clicking Add Application button
Copy and paste API Key and Secret Key keys into variable.env
file
Sign up and confirm your account via the activation email
Then enter your SendGrid Username and Password into variable.env
file
Go to Discord Developer Portal
Sign up and confirm your account via the activation email
Create an application by clicking on NEW APPLICATION
Enter the name of Application and create it
Click on the Oauth2 to fill in valid Redirection URL e.g http://localhost:3000/auth/discordapp/callback and save changes
Copy your CLIENT ID and CLIENT SECRET into the variable.env
file
Go to Dropbox Developer Portal
Sign up and confirm your account via the activation email
Create an application by clicking on CREATE APP
Fill out all the required fields
Click on Create app
Fill our Redirection URLS valid Redirection URL e.g http://localhost:3000/auth/dropbox/callback
Copy your App key and App secret into the variable.env
file
Go to Slack Developer Portal
Sign up and confirm your account with your Workspace’s Slack URL.
Create an application by clicking on CREATE NEW APP
Fill out all the required fields
Click on Create app
Navigate to Oauth & Permission and your Redirect URL e.g http://localhost:3000/auth/slack/callback and Save URL
Save changes
Copy your Client ID and Client Secret into the variable.env
file
Name | Description |
---|---|
tests | Contains your tests. Separate from source because there is a different build process. |
.vscode | Contains VS Code specific settings |
app | Contains the distributable (or output) from your TypeScript build. This is the code you ship to production |
dist | Contains the distributable (or output) from your TypeScript build. For Development only |
public/css/style.css | Contains custom css used in the application. |
public/dist | Contains the output from your Webpack build. |
public/Images | Contains all the icons used for the PWA. |
public/js/main.js | Contains custom javascript used in the frontend of the application. |
public/snap | Contains screenshots of the app used in the README file. |
public/mainfest.json | The app manifest for the PWA. |
public/pwabuilder.js | Custom js files that register the service worker on the broswer. |
public/sw.js | The service worker for the application. |
src/controllers/authController.ts | Controller for the passport authentication of the app{Login and Register}. |
src/controllers/indexController.ts | Controller for the app logic{home, contact, 404, 500}. |
src/controllers/postController.ts | Controller for the Post. |
src/handlers/mail.ts | Handles the sending of email of the app. |
src/handlers/passport.ts | Handles all the authentication and authorisation of third party apps{Facebook, Twitter, LinkedIn and more}. |
src/models/User.ts | Mongoose schema and model for User. |
src/models/Post.ts | Mongoose schema and model for User. |
src/routes/index.ts | Contains all of the routing of the application except auth. |
src/routes/auth.ts | Contains all of the routing of the authentication of third party applications. |
src/app.ts | The main application file. |
src/config.ts | Contains the Node environment of the app for both development and production. |
src/server.ts | Entry point to your express app. |
views/mixins/_postForm.pug | Contains the reusable form for creating a Post. |
views/partials/footer.pug | Footer partial template. |
views/partials/navbar.pug | Navbar partial template. |
views/404.pug | Not found template. |
views/500.pug | Internal Server template. |
views/contact.pug | Contact form template. |
views/create.pug | Create/Edit a Post template. |
views/home.pug | Home page template. |
views/layout.pug | Base template. |
views/login.pug | Login template. |
views/posts.pug | Post page template that show all posts created and edited by the authenticated user. |
views/register.pug | Register a user template. |
.dockerignore | Folder and files ignored by docker usage. |
.eslintignore | Folder and files ignored by Eslint. |
.eslintrc | Rules for eslint linter. |
.gitignore | Folder and files ignored by git. |
.prettierignore | Folder and files ignored by Prettier. |
.prettierrc | Rules for Prettier formatter. |
.travis.yml | Configuration files for continuous integration by Travis CI. |
copy-files.ts | Build script that copies public and views folders to the app folder for production. |
app.js | The main application file. |
docker-compose.yml | Docker compose configuration file for Node.js and MongoDB |
Dockerfile | Docker configuration file. |
ecosystem.config.js | A pm2 configuration file for production. |
.env.variable.env | Your API keys, tokens, passwords and database URI. |
jest.config.js | Used to configure Jest running tests written in TypeScript |
package.json | NPM dependencies. |
package-lock.json | Contains exact versions of NPM dependencies in package.json. |
prod.Dockerfile | Docker configuration for running app in a production env. |
tsconfig-prod.json | Config settings for compiling server code written in TypeScript for production. |
tsconfig.json | Config settings for compiling server code written in TypeScript for development. |
webpack.config.js | Configuration files for Webpack build. |
Dependencies are managed through package.json
. In that file you'll find two sections:
dependencies
Package | Description |
---|---|
body-parser | Express 4 middleware. |
compression | Express 4 middleware. |
connect-ensure-login | Ensures that a user is logged in and redirect to previous URL after login. |
connect-flash | Express 4 Middleware. |
connect-mongo | MongoDB session store for Express. |
cors | Express 4 Middleware |
dotenv | Loads environment variables from variable.env file. |
errorhandler | Express 4 middleware. |
express | Node.js web framework. |
express-flash | Provides flash messages for Express. |
express-recaptcha | Express 4 middleware for Google-reCAPTCHA |
express-session | Express 4 middleware. |
express-status-monitor | Report realtime server metrics for Express-based node servers. |
express-validator | Easy form validation for Express. |
helmet | Secures your Express apps by setting various HTTP headers middleware |
md5 | A JavaScript function for hashing messages with MD5. |
mongoose | MongoDB ODM. |
mongoose-mongodb-errors | A plugin to transform mongodb like errors |
morgan | Express 4 middleware for logging. |
nodemailer | Node.js library for sending emails. |
nodemailer-sendgrid-transport | This module is a transport plugin for Nodemailer that makes it possible to send through SendGrid's Web API! |
passport | Simple and elegant authentication library for node.js |
passport-discord | Sign-in with Discord plugin. |
passport-dropbox-oauth2 | Sign-in with Dropbox plugin. |
passport-facebook | Sign-in with Facebook plugin. |
passport-github | 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-local-mongoose | A Mongoose plugin that simplifies building username and password login with Passport. |
passport-slack | Sign-in with Slack plugin. |
passport-twitter | Sign-in with Twitter plugin. |
pug (jade) | Template engine for Express. |
shelljs | Unix shell commands on top of the Node.js API |
validator | A library of string validators and sanitizers. |
devDependencies
Package | Description |
---|---|
@babel/core | Babel compiler core. |
@babel/preset-env | A Babel preset for each environment. |
@types | Dependencies in this folder are .d.ts files used to provide types |
@typescript-eslint/eslint-plugin | TypeScript plugin for ESLint |
@typescript-eslint/parser | An ESLint custom parser which leverages TypeScript ESTree |
autoprefixer | Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website |
babel-core | Babel compiler core. |
babel-loader | Babel module loader for webpack |
babel-plugin-transform-util-promisify | Transforms util.promisify to a function definition for node versions < 8, automatically detects if node version >= 8 and does nothing if so. |
babel-preset-env | A Babel preset for each environment. |
concurrently | Utility that manages multiple concurrent tasks. Used with npm scripts |
css-loader | Css loader module for webpack |
eslint | An AST-based pattern checker for JavaScript. |
eslint-config-airbnb | Airbnb's ESLint config, following our styleguide |
eslint-config-prettier | Turns off all rules that are unnecessary or might conflict with Prettier. |
eslint-import-resolver-alias | A simple Node behavior import resolution plugin for eslint-plugin-import, supporting module alias. |
eslint-plugin-import | Eslint import with sanity. |
eslint-plugin-jsx-a11y | Static AST checker for accessibility rules on JSX elements. |
eslint-plugin-prettier | Runs prettier as an eslint rule |
eslint-plugin-react | React specific linting rules for ESLint |
extract-text-webpack-plugin | Extracts text from a bundle into a separate file |
jest | Testing library for JavaScript. |
nodemon | Utility that automatically restarts node process when it crashes |
pm2 | Production process manager for Node.JS applications with a built-in load balancer. |
postcss-loader | PostCSS loader for webpack |
prettier | An opinionated code formatter |
supertest | HTTP assertion library. |
ts-jest | A preprocessor with sourcemap support to help use TypeScript with Jest. |
ts-node | Enables directly running TS files. Used to run copy-files.ts |
typescript | JavaScript compiler/type checker that boosts JavaScript productivity |
webpack | A module bundler |
One of the best Open source Contributors Sindre Sorhus has put together an awesome list of Node.js libraries and resources. Click here
DevDocs - Fast, offline, and free documentation browser for developers. Search 100+ docs in one web app: HTML, CSS, JavaScript, PHP, Ruby, Python, Go, Typescript.
Devhint - The one-page guide to TypeScript: usage, examples, links, snippets, and more.
SaltyCrane Blog - Typescript cheat sheet blog referencing from the Official Microsoft Typescript repository.
Once you are ready to deploy your app, you will need to create an account with a cloud platform to host it. These are not the only choices, You can use Digital Ocean, Azure Virtual Machines, Google Cloud Compute Engine Additionally, you can create an account with MongoDB Atlas and then pick one of the 4 providers below. Again, there are plenty of other choices, and you are not limited to just the ones listed below.
0.0.0.0/0
. Click SAVE to save the 0.0.0.0/0
whitelist.variable.env
with this URI string. Make sure to replace the PASSWORD with the db User password that you created under the Security tab.We are deploying your changes
. You will need to wait for the deployment to finish before using the DB in your application.Note: As an alternative to MongoDB Atlas, there is also Compose.
A Complete feature set for production environment, built with a worldwide community of developers and enterprises. It can be used on Infrastructure-as-a-Service (IaaS) providers like Digital Ocean Droplets
# You need to know PM2 run in production mode and will run a bunch of Node.js Clusters.
# This will help to ensure high availability(HA) and Load Balancing.
npm run pm2
If you want to setup a CI/CD for your production application for any Infrastructure-as-a-Service (IaaS) Cloud provider, Click here.
I believe Serverless Containers are the future of deploying Containerized applications. The Hackathon starter kit Demo site runs on Google Cloud Run. I also highly recommend this approach.
# Ensure that you have a Live MongoDB URL inside your variable.env [PROD_MONGODB]
# PROD_MONGODB=mongodb://<username>:<password>@<hostname>/<database name>
# Build the project for a production environment.
npm run docker:build
# Build a Docker image
docker build --rm -f "prod.Dockerfile" -t hackathon-starter-kit:latest .
# Tag the image to a Google Cloud Container Registry URL
docker tag hackathon-starter-kit us.gcr.io/[PROJECT ID]/hackathon-starter-kit
# Push the newly tagged image to the Google Cloud Container Registry.
docker push us.gcr.io/[PROJECT_ID]/hackathon-starter-kit
You will need docker and docker-compose installed to build the application.
After installing docker, start the application with the following commands :
# Get the latest snapshot
git clone https://github.com/nerdeveloper/hackathon-starter-kit.git
# Change directory
cd hackathon-starter-kit
# Copy .env.example to .env
cp .env.variable.env variable.env
# Go to the variable.env file and change your DEV_MONGODB value to mongodb://app:password@mongodb/hackathon
# if you have experience with docker and docker-compose, you can edit your credentials in the docker-compose.yml file.
# To build and start the project for the first time.
docker-compose -f "docker-compose.yml" up -d --build
# Run the project
docker run -d -it --name hackathon -p 3000:3000 [name of the image or ID of the image]
# Get the latest snapshot
git clone https://github.com/nerdeveloper/hackathon-starter-kit.git
# Change directory
cd hackathon-starter-kit
# Copy .env.example to .env
cp .env.variable.env variable.env
# Ensure that you have a Live MongoDB URL inside your variable.env [PROD_MONGODB]
# PROD_MONGODB=mongodb://<username>:<password>@<hostname>/<database name>
# Build the project
npm run docker:build
# Build the Docker image
docker build --rm -f "prod.Dockerfile" -t typescript-node-kit:latest .
# Run the project
docker run -d -it --name hackathon -p 8080:8080 [name of the image or ID of the image]
Note that SEO only applies to the pages that will be publicly visible with no authentication. Note that some of the following fields need to be added to the HTML header section similar to the page title
<meta property="og:title" content="Title">
<meta property="og:type" content="website">
<meta property="og:url" content="http://www.example.com/article.html">
<meta property="og:image" content="http://www.example.com/image.png">
<meta name="title" content="Title of the page">
<meta name="Description" content="Description about the page.">
<meta name="keywords" content=" Keywords used for the page Search indexing">
You can
You can also follow me on Twitter
My inspiration for building this is the ecommerce-netlify by Sarah Drasner
You can find the changelog for the project in: CHANGELOG.md
You can find the Code of Conduct for the project in: CODE_OF_CONDUCT.md
You can find how you can contribute to the project in: CONTRIBUTING.md
You can find how you can contribute to the project in: LICENSE
Laravel Hackathon Starter - SUSUMU 進 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 languag
Introduction This is a hackathon boilerplate for new Flask web applications created by Major League Hacking. It is for hackers looking to get started quickly on a new hackathon project using the Flask
Hackathon-slicer是一个基于DLP技术打印机的微型切片机。 关于 这个项目是基于DLP技术3D打印机的一个简单切片机。 它利用WebGL和模板缓冲区体素化.stl文件运行在您的浏览器。由此产生的切片将被生成一个装满.png图片的zip文件。 托管版本,进一步的文档可以在这里找到 快速安装指南 npm installnpm start
什么是 Design Hackathon ? Hackathon,即「黑客马拉松」,是一个流传于程序员和技术爱好者中的活动。在该活动当中,大家相聚在一起,以合作的形式去编程,整个编程的过程几乎没有任何限制或方向。Design Hackathon 类似用「黑客马拉松」的思维做产品设计,它将所有的产品设计师、视觉设计师甚至工程师聚在一起,在一定的时间内,以头脑风暴的方式,最大范围地搜集产品的各种可能性
ngX Starter Kit Web project starter kit including modern tools and workflow based onangular-cli, best practices from the community, a scalable base template anda good learning base. Generated using ng
Graphile Starter Take it for a spin! We're running the starter at: https://graphile-starter.herokuapp.com Feel free to register an account and have a poke around as you see fit. NOTE: emails are sent