Giter Site home page Giter Site logo

hikefuel's Introduction

This project uses a Makefile to simplify common tasks. Here are the available commands:

make install

Installs project dependencies using npm ci. This ensures a clean and consistent installation of node modules.

make start

Starts the development server with npm start. This command runs the application in development mode.

make build

Builds the project for production using npm run build. It creates a minified and optimized version of your application.

make clean

Removes the build directory with rm -rf build. This command cleans up old build files.

make test

Runs tests with npx jest. This command executes your test suite to ensure your code is working correctly.

make test-watch

Runs tests in watch mode with npx jest --watch. It automatically re-runs tests when files change, useful for development.

make coverage

Checks test coverage with npx jest --coverage. This command generates a report showing which parts of your code are covered by tests.

make lint

Lints your source code with npx eslint ./src. This command checks your code for style and potential errors.

make lint-fix

Fixes linting issues with npx eslint ./src --fix. This command automatically corrects style issues in your code.

Default Goal

The default goal is set to install. This means if you run make without any arguments, it will execute the install command by default.

hikefuel's People

Contributors

tandrei17 avatar torrua 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.