Socket
Socket
Sign inDemoInstall

nts-scripts

Package Overview
Dependencies
17
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    nts-scripts

Simple npm `scripts` and common `devDependencies` to help build a Node TypeScript app.


Version published
Maintainers
1
Created

Changelog

Source

3.18.1 (2023-01-20)

Bug Fixes

  • Update build badge (08c9c3e)

Readme

Source

build   npm

nts-scripts

Simple npm scripts and common devDependencies to help build a Node TypeScript app.

Inspired by Create React App's react-scripts package 👏

Included dependencies

  • TypeScript
  • Jest
  • Eslint
  • Prettier
  • Along with other TypeScript supporting dependencies. See the package.json file for the full list.

Available scripts

build

Compiles your TypeScript. Expects a tsconfig.json file with an include property and a compilerOptions.outDir property.

clean

Deletes your compiled TypeScript. Expects a tsconfig.json file with a compilerOptions.outDir property.

format

Runs prettier against all files. Uses your .gitignore file if it exists to ignore. Semi-customizable with args.

lint

Runs eslint against all files. Uses your .gitignore file if it exists to ignore. Semi-customizable with args.

start

Cleans, builds, and starts your Node project with debugging enabled. Targets the main property in your package.json first and falls back to the outDir property second. Semi-customizable with args.

watch

Essentially the same as start except your project will re-build/start when changes are seen in your outDir. Semi-customizable with args.

Project requirements

tsconfig.json

At a minimum the properties below are required. The values can be customized.

{
  "compilerOptions": {
    "outDir": "./build"
  },
  "include": ["./src"]
}

.gitignore

At least ignore the folders below. NOTE: If you customized the outDir in your tsconfig.json, update the build line here to match.

build
coverage
node_modules

.eslintrc.js

An eslint config is required. Below is the simplest setup.

module.exports = {
  extends: [
    'plugin:@typescript-eslint/recommended',
    'plugin:prettier/recommended',
    'prettier',
  ],
  parser: '@typescript-eslint/parser',
};

.importsortrc.js

The config below is required.

module.exports = {
  '.ts, .js': {
    style: 'module',
    parser: 'typescript',
  },
};

jest.config.js

At a minimum the config below is required. NOTE: If you customized the outDir in your tsconfig.json, update '<rootDir>/build/' to match.

module.exports = {
  preset: 'ts-jest',
  testPathIgnorePatterns: ['<rootDir>/build/', '<rootDir>/node_modules/'],
};

Project recommendations

.prettierrc.js

It's recommended you setup a Prettier configuration file.

.nvmrc

Using nvm along with an .nvmrc file to automatically switch to the appropriate version of Node can be extremely helpful.

.vscode/settings.json

If you're using VS Code, a project-level settings file may be helpful to customize your experience.

Keywords

FAQs

Last updated on 20 Jan 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc