Skip to content

Latest commit

 

History

History
67 lines (52 loc) · 1.36 KB

readme.md

File metadata and controls

67 lines (52 loc) · 1.36 KB

Instructions

This is a template that will help you to create NodeJS projects.

Ok, so now start an amazing projects!

Commands

To install Dependencies:

yarn

To Build tsc files (on ./dist folder):

yarn build

To run on dev enviroment:

// Port 3333
yarn dev:server

Visual Studio Code Settings

It's necessary install some plugins at your IDE to get the better of this template:

  • ESLint (dbaeumer.vscode-eslint)
  • Prettier Code Formatter (esbenp.prettier-vscode);

Type Command + , and then add this configurations:

    "[javascript]": {
        "editor.codeActionsOnSave": {
            "source.fixAll.eslint": true
        },
        "editor.formatOnSave": true
    },
    "[javascriptreact]": {
        "editor.codeActionsOnSave": {
            "source.fixAll.eslint": true
        },
        "editor.formatOnSave": true
    },
    "[typescript]": {
        "editor.codeActionsOnSave": {
            "source.fixAll.eslint": true
        },
        "editor.formatOnSave": true
    },
    "[typescriptreact]": {
        "editor.codeActionsOnSave": {
            "source.fixAll.eslint": true
        },
        "editor.formatOnSave": true
    },
    "window.zoomLevel": 0,
    "editor.defaultFormatter": "esbenp.prettier-vscode"

-- Made with 🖥, ☕️ and ❤️.