Giter VIP home page Giter VIP logo

template-nodejs-app's Introduction

Node.js App Boilerplate and Instructions

A cool app created by Megabyte Labs



A boilerplate / instructions / tips for creating Node.js apps


Table of Contents

Overview

This repository houses a starting template / boilerplate with the format that all Megabyte Labs Node.js apps should use. It bundles together NestJS, and a few other recommended dependencies. It also includes Jest for Test-Driven Development (TDD). Developers are expected to read this README before converting this starting template into the next awesome Node.js app.

Requirements

If you are simply including this library in your project, all you need is a recent version of Node.js. Node.js >14.18.0 is sometimes required and is the only version range we actively support. Albeit, it is highly probable that lower versions will work as well depending on the requirements that this project imports.

Developer Requirements

The following versions of Node.js and Python are required for development:

Other versions may work, but only the above versions are supported. Most development dependencies are installed automatically by our Taskfile.yml set-up (even Node.js and Python). Run bash start.sh to install Bodega (an improved fork of go-task) and run the initialization sequence. The taskfiles will automatically install dependencies as they are needed, based on what development tasks you are running. For more information, check out the CONTRIBUTING.md or simply run:

npm run help

npm run help will ensure Bodega is installed and then open an interactive dialog where you can explore and learn about various developer commands.

Node.js App Requirements

All of the Node.js apps in the Megabyte Labs eco-system should use the same format and core dependencies. They should all be written in TypeScript. Because we use Angular as a first-class choice, NestJS was an easy choice for us to adopt because of the similarities. The fact that NestJS is wildly popular on GitHub does not hurt as well.

Test-Driven Development

It is imperative that you utilize Test-Driven Development principles as you code. Code might be a no-brainer but in order to provide automatic dependency updates, sanity checks, and feel confident in our eco-system, everything has to have test cases associated with it. Instead of manually compiling the app each time you make a change to test the app, you can create Jest tests and then use Nodemon to automatically run the tests everytime a change is made to any file.

Development Tools

You are probably already familiar with npm run test and npm run build. We take things a step further and provide a plethora of build tools that are housed in our Taskfile.yml and the accompanying files it includes. We encourage you to attempt to make use of task npm:test:inspect which will watch the files as you code, run the Jest tests whenever a change is made, and open a Chrome DevTools instance for advanced debugging via ndb.

To make sense of all the build tools we include in all of our projects, you can run bash start.sh (to make sure our task runner called Bodega is installed) and then task --menu to show a sweet TUI that will help you navigate through the available commands. It integrates documentation right into the menu too!

Unit Tests vs. E2E Tests

A Node.js app that is part of our eco-system should include two types of tests. Both of the tests should use Jest as the test runner. The unit tests should be kept in the src/ directory alongside the actual code. Unit tests should be geared towards providing code coverage and testing specific functions.

Every app should include E2E tests that actually test whether or not the app is working or not. Ideally, if all of the E2E tests pass in CI/CD, then there should be no need to manually test the app before approving the application and merging to master.

Serverless vs. Docker

Generally, when we deploy a Node.js application, it will either be hosted in a serverless environment or in a Docker container. Ideally, whenever possible CloudFlare workers should be used. They are faster than other serverless functions but do have some limitations. If CloudFlare workers cannot be utilized, Firebase is another option that we encourage.

Some applications will not be able to be run in serverless environments. In these cases, we prefer to package the Node.js applications in Docker containers which can then be run either on a machine or, preferrably, in a scalable environment like Google Cloud Run.

Regardless of where we plan to run the code, you should verse yourself with the specifics of the intended environment. 95% of the plan, we intend to stick with CloudFlare workers, Firebase, or Google Cloud Run. All of these platforms are stellar services worth getting to know.

  • CloudFlare workers are hosted on edge servers in serverless environments that have no cold-start time because they use the V8 engine (like a browser) instead of a full-fledged Node.js environment like traditional serverless solutions. This makes them incredibly fast. In fact, there is a 50ms CPU execution cap which just goes to show you how fast they are intended to be.
  • Firebase Functions are also incredibly awesome because they integrate tightly with Firebase's other offerings like Firebase Firestore which is a hosted real-time database with tight integration with a whole suite of tools geared towards app development.
  • Google Cloud Run is the newest offering. The service basically allows you to package any application into a Dockerfile and then automatically scale.

All of these solutions are the best because you only have to pay for what you use. And most of them offer a pretty high amount of free requests to work with. CloudFlare workers offers 100k free requests per day.

Smoke Testing

Before opening any merge requests, the application should be tested in its projected final state. In other words, if the application is going to be hosted on Google Cloud Run, then it needs to be packaged up and tested ahead of time instead of strictly relying on unit / E2E tests.

Contributing

Contributions, issues, and feature requests are welcome! Feel free to check the issues page. If you would like to contribute, please take a look at the contributing guide.

Sponsorship

Dear Awesome Person,

I create open source projects out of love. Although I have a job, shelter, and as much fast food as I can handle, it would still be pretty cool to be appreciated by the community for something I have spent a lot of time and money on. Please consider sponsoring me! Who knows? Maybe I will be able to quit my job and publish open source full time.

Sincerely,

Brian Zalewski

Open Collective sponsors GitHub sponsors Patreon

Affiliates

Below you will find a list of services we leverage that offer special incentives for signing up for their services through our special links:

MailChimp DigitalOcean Referral Badge

License

Copyright © 2020-2021 Megabyte LLC. This project is MIT licensed.

template-nodejs-app's People

Contributors

professormanhattan avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.