Skip to content
This repository has been archived by the owner on Apr 30, 2023. It is now read-only.

ts-templates/node14

Repository files navigation

build lint test ESLint Recommended

@ts-templates/node14

Template for TypeScript project using Node.js v14

Features

Usage

  1. Create repository using template
  2. Replace provisional string with actual string
    • https://github.com/ts-templates/node14 => your repository URL
    • @ts-templates/node14 => your package name
    • Template for TypeScript project using Node.js v14 => your package description
  3. Implement src/main.ts

Scripts

# Compile TypeScript files to JavaScript files
npm run build

# Remove built files
npm run clean

# Run linters
npm run lint

# Fix codes by linters
npm run lint:fix

# Run main.ts
npm start

# Run tests
npm test