All Projects → LandazuriPaul → nest-react

LandazuriPaul / nest-react

Licence: LGPL-3.0 license
Simple NestJS + React boilerplate using the Yarn workspaces - Full on TS!

Programming Languages

typescript
32286 projects
Dockerfile
14818 projects
shell
77523 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to nest-react

nt-casbin
nest.js with casbin auth Nest.js RBAC ABAC 权限管理
Stars: ✭ 27 (-32.5%)
Mutual labels:  nestjs
discord-nestjs
👾 NestJS package for discord.js
Stars: ✭ 173 (+332.5%)
Mutual labels:  nestjs
nest-crawler
An easiest crawling and scraping module for NestJS
Stars: ✭ 45 (+12.5%)
Mutual labels:  nestjs
nestjs-starter
🚀 Nest framework starter
Stars: ✭ 30 (-25%)
Mutual labels:  nestjs
typegraphql-nestjs
TypeGraphQL integration with NestJS
Stars: ✭ 117 (+192.5%)
Mutual labels:  nestjs
TraderCore
Core module for the StockML crypto trading application.
Stars: ✭ 41 (+2.5%)
Mutual labels:  nestjs
nestjs-cls
A continuation-local storage (async context) module compatible with NestJS's dependency injection.
Stars: ✭ 110 (+175%)
Mutual labels:  nestjs
angular-nestjs-rendering
Angular 5+ server side rendering using NestJS ⭐ 🔥 💥
Stars: ✭ 104 (+160%)
Mutual labels:  nestjs
nestjs-session
Idiomatic Session Module for NestJS. Built on top of `express-session` 😎
Stars: ✭ 150 (+275%)
Mutual labels:  nestjs
nest-mailman
📮 The mailer package for your NestJS Applications.
Stars: ✭ 161 (+302.5%)
Mutual labels:  nestjs
ogma
A monorepo for the ogma logger and related packages
Stars: ✭ 201 (+402.5%)
Mutual labels:  nestjs
typeorm-factories
Create factories for your TypeORM entities. Useful for NestJS applications
Stars: ✭ 43 (+7.5%)
Mutual labels:  nestjs
nest-neo4j
A NestJS module for integrating with Neo4j
Stars: ✭ 54 (+35%)
Mutual labels:  nestjs
devto-monorepo
Source code for the Dev.to article - Next.js, Apollo Client and Server on a single Express app
Stars: ✭ 33 (-17.5%)
Mutual labels:  yarn-workspaces
angular-chat
Angular v.9, Node.js, Nest.js v.6, Mongoose, Socket.io, Passport, Angular Universal SSR (in progress...)
Stars: ✭ 35 (-12.5%)
Mutual labels:  nestjs
in-memory-db
Simple In-Memory DB Service for NestJS projects
Stars: ✭ 55 (+37.5%)
Mutual labels:  nestjs
streamkit
My streaming overlay platform for YouTube https://bit.ly/3AvaoFz and Twitch https://bit.ly/37xUPAM
Stars: ✭ 15 (-62.5%)
Mutual labels:  nestjs
car-assembly
基于Vue3.0+WebGL+Nestjs搭建的汽车组装演示系统
Stars: ✭ 44 (+10%)
Mutual labels:  nestjs
Phantom
A mimic website of Pinterest where one can share ideas , socialize and find inspirational ideas
Stars: ✭ 18 (-55%)
Mutual labels:  nestjs
chanyeong
👨‍💻 chanyeong's portfolio and blog webpage
Stars: ✭ 39 (-2.5%)
Mutual labels:  nestjs

Nest - React boilerplate

This is a basic boilerplate to quickly set up a web application fully written in TypeScript (^4.7.4) based on:

  • NestJS (^9.0.11) for the server: > Go to the server package

    « A progressive Node.js framework for building efficient, reliable and scalable server-side applications. »

  • React + ReactDOM (^18.2.0) for the client: > Go to the client package

    « A JavaScript library for building user interfaces »

  • Vite (^3.0.9): Based on ESBuild and Rollup, this tool combines speed, performance and configurability to offer the best frontend DX possible

    « Next Generation Frontend Tooling »

Features

While being minimalistic, this boilerplate offers a number of features which can be very valuable for the Development Experience (DX):

Global

  • Makes use of the yarn workspaces to centralise the package management system for all the internal packages.

  • TypeScript ^4.7.4 which comes with, for example, optional chaining and customised import paths already defined for each package.

  • EditorConfig + Prettier for code formatting.

  • Full ESLint configurations for linting.

  • Consistent coding style following the standards. See CONTRIBUTING.

  • Development scripts: yarn start:dev can be run in any package. See Development & builds for more information.

  • Visual Studio Code debug settings.

Client

  • Vite's Hot Module Replacement combined with the React Fast Refresh offers an incredibly fast development process. When you edit and save a source file, it will only reload the corresponding module in the development server AND only re-render the depending components without losing their state!

  • Debugger tool so you can avoid using the native but synchronous and greed console's methods. For more information, see the client README section about the Debug library.

  • Production ready NGINX configuration example to optimise your frontend file delivery.

  • Production ready Dockerfile.

Server

  • NestJS basic package with all the Nest tools. See the server README for more information.

  • A predefined global config module to handle all the configuration you would like to pass to your server at runtime. You can lean more in the server's README Configuration module section.

  • Production ready Dockerfile.

Client/Server versions

While being minimalistic, this boilerplate provides straight-forward access to the client's or version's deployed version:

  1. To check the server's version, simply call the /version endpoint which returns a JSON looking like this:

    {
      "GIT_SHORT_HASH": "568cfad",
      "GIT_BRANCH": "master",
      "REPO_VERSION": "1.0.0",
      "DOMAIN_VERSION": "1.0.0",
      "LIB_VERSION": "1.0.0",
      "SERVER_VERSION": "1.0.0"
    }
  2. To identify the client's deployed version, you can see the page's source code and look for the JS bundle name, which should look like: [email protected]. This corresponds to the pattern passed in the vite.config.ts file: [name].${getBuildId()}.[hash].js. Currently, the buildId is defined as shortHash@branch but you can adapt the getBuildId function to your needs.

  3. Since the two applications are supposed to be deployed as separate Docker images, this boilerplate comes with a simple function embedded in the frontend: checkServerVersion. If the server version doesn't satisfy the frontend peer dependency, an error message will be printed in the frontend console (using the debug library).


How to use this boilerplate

First, you'll need to download and adapt it to your project:

  1. You can use the Use this template feature from GitHub to generate a new project based on this boilerplate. Alternatively, you can clone this repository to a brand new folder named after your new-project:

    git clone [email protected]:LandazuriPaul/nest-react.git new-project

For steps 2 to 5, a global search in all files command from any decent editor should help. You can simply search for nest-react and replace it by your new-project.

  1. Change the main project's name, set in the root package.json's name field and in its scripts commands.

  2. Change each package's name, set in its own package.json's name field.

  3. Update the dependencies of each package requiring one of the internal packages:

  4. Change the client debug LOGGER_PREFIX which is set in the config.ts file. For more information, see the client README section about the Debug library.

  5. Adapt the packages/client/public folder to your project (with your icons, manifest, robots.txt files).

Project installation

Once you're done with the previous steps, you can properly install the project dependencies and link the packages together:

  1. Basic requirements to run the repository:

    • Node.js: The recommended way is via nvm. You can then install the version used for this project:
      nvm install 16.16.0
    • Yarn: If you have nvm installed, you'd prefer to install yarn without the node dependency. To do so, the bash install is the easiest:
      curl -o- -L https://yarnpkg.com/install.sh | bash

    As the boilerplate makes use of the yarn workspaces, you shouldn't use npm.

  2. Install dependencies with the classic:

    yarn install

    This will install all package dependencies in a common node_modules folder at the root of the project using a single yarn.lock file to avoid conflicting dependencies. The internal dependencies will be replaced by symbolic links to the corresponding packages.

  3. Finally, in order to have the "common" packages (lib and domain) built so they can be used by both the server and the client, run:

    yarn build:common

    Or if you want the common packages to be watched for file changes, you can run:

    yarn start:common

Note about subsequent installations

When you want to add new dependencies to any of the packages, you can either:

  • Run yarn add <new-package1> <new-package2> in the corresponding package folder.
  • Or run yarn workspace <YOUR_PACKAGE_NAME> add <new-package1> <new-package2> from the root folder.

Development & Builds

See each package's README to learn more about its development and build scripts:


Code formatting

  • EditorConfig: « helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs. »

  • Prettier (^1.19.1): « An opinionated code formatter » which « saves you time and energy ».

Linting

ESLint (^8.22.0) with TypeScript parser (^5.33.1): « Find and fix problems in your JavaScript code »

  • Project rules are set in the root .eslintrc file.

  • As the client package requires specific React related rules, it has its own .eslintrc file which extends the project one.

To see how to integrates these tools with your favourite IDE or text editor, you can see the CONTRIBUTING Development tools section.

Each package has its own

yarn lint

command to ensure that its source code is written according to the ESLint rules. The project itself also has a root yarn lint command to sequentially run it in each internal package.

TypeScript import paths

As you can see in all packages' tsconfig.json files, both the baseUrl and paths properties are defined to help you avoid the cumbersome and error-prone ../../ import paths (amongst other options):

// packages' tsconfig.json
{
  "extends": "../../tsconfig.json",
  "compilerOptions": {
    "baseUrl": ".",
    "outDir": "dist",
    "paths": {
      "~/*": ["src/*"]
    }
  }
}

This allows you to import any file from the same package with the '~/path/to/file/' notation, considering the src folder as the package's home (i.e. ~).

Docker images

This project comes with a Dockerfile for each package likely to be deployed. They are all based on the alpine project.

To build the corresponding Docker images, you can use the build_and_push.sh script by setting the PACKAGE and optionally the VERSION — defaults to latest — as environment variables or simply use the dedicated yarn commands (the latest version will be applied):

# To build and push the server
yarn build-push:server

# To build and push the client
yarn build-push:client

Deployment

The shipped docker-compose.yml file is mainly for demonstration purposes and local testing.

In order to run the applications in a completely containerised environment, please refer to the Docker documentation.

Improvements

  • #TODO: Add an automated script to run installation steps 2 to 5.

License

This project is licensed under the GNU Lesser General Public License v3.0 or later. You can learn more reading the LICENSE.

Author

Paul Landázuri

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].