GithubHelp home page GithubHelp logo

arzoochina / nox-track Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nox04/nox-track

0.0 1.0 0.0 1.77 MB

Nox Track

Home Page: https://noxtracking.com

JavaScript 16.08% TypeScript 83.68% CSS 0.24%

nox-track's Introduction

tailwind-react-next.js-typescript-eslint-jest-starter

Starter template for building a project using React, Typescript, Next.js, Jest, TailwindCSS and ESLint.

Setup Instructions

  1. Clone or download the project.
  2. cd in the project directory.
  3. If you cloned the project, make sure you remove the remote reference to this project by running git remote rm origin.
  4. Copy .env.example to .env as that file is used to load up all your environment variables.
  5. Run yarn install or npm install to install all dependencies.

Commands

  • yarn dev: To start a local development server.

  • yarn test: To run the entire unit test suite using jest.

  • yarn lint: To run the ESLint based linter to find out the issues in the project.

  • yarn format: To autoformat all the issues.

  • yarn export: Run this after running yarn analyze to export a build copy.

  • yarn production: To export a production build. Use yarn start to serve that.

  • yarn upgrade --latest: To upgrade all packages to their latest versions (could include breaking changes).

Code Structure

  1. All Next.js entrypoints are housed in the pages/ directory as a default.
  2. Everything else is in the src/ directory.
  3. src/components are all stateless reusable components.
  4. src/containers are more of stateful components for more main level components, like a whole page or screen for example.
  5. src/css folder is there just to house the Tailwind initialization.
  6. All env variables are available in .env files (.env file isn't committed). Whenever you update .env, please update .env.example and .env.test and next.config.js to proxy all environment variables properly. You can access these variables in the app source code anywhere using process.env.<VAR_NAME>.

My personal preference is to have the bare minimum code in pages/ and house everything in the src/ directory. Helps keep everything in one place, neat and tidy. You can change this in any way you prefer.

If you feel like changing the directory structure, please change the appropriate settings in the following files:

  • .babelrc
  • jest.config.js
  • postcss.config.js
  • tsconfig.json
  • The lint and the format scripts in package.json

Note

  1. This project removes the x-powered-by response header via next.config.js by marking the poweredByHeader property as false.

  2. This project also adds support for trailing slash on URL's. Makes /dashboard/ redirect to /dashboard instead of 404ing.

    So if you have a route for /dashboard, a request for /dashboard/ 404's. This is definitely true for file-based URL's as documented here: vercel/next.js#5214 (comment). Picked the fix from that GitHub Issue.

    NOTE: Delete pages/_error.ts to disable this.

  3. If you wish to use Enzyme instead of React Testing Library, please refer to this commit. Enzyme was removed with that commit.

nox-track's People

Contributors

nox04 avatar

Watchers

James Cloos 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.