npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

start-ts-by

v0.2.3

Published

Start TypeScript project by git repo or local folder templates

Readme

start-ts-by

NPM Version Ask DeepWiki

Create ts/js projects from flexible templates using git and local folders.


🚀 Get Started

npx start-ts-by [projectName]
# or
npx start-ts-by create [projectName]

Interactive Mode

npx start-ts-by
# Example workflow:
# 🚀 Start creating project...
# ✔ Enter project name: my-app
# ✔ Enter template (e.g. user/repo, ./local-path, git@domain:group/repo.git)
# ? Choose a template (Use arrow keys)
#   royfuwei/starter-ts-app (Starter TypeScript App)
#   royfuwei/starter-ts-lib (Starter TypeScript Library)
#   ...

Non-interactive Mode

Basic Usage

# Using --no-interaction (--ni) flag
npx start-ts-by my-app -t royfuwei/starter-ts-app --no-interaction
npx start-ts-by my-app -t royfuwei/starter-ts-app --ni

# Legacy --skip-prompt flag (deprecated, use --no-interaction)
npx start-ts-by my-app --skip-prompt -t royfuwei/starter-ts-app

Monorepo Mode

# Non-interactive mode: Remove lock files, .npmrc, and packageManager field for monorepo subprojects
npx start-ts-by my-app -t user/repo --monorepo --ni

# Combine with other flags
npx start-ts-by my-app -t user/repo --monorepo --no-husky --ni

# Interactive mode: Specify --monorepo flag upfront
npx start-ts-by my-app -t user/repo --monorepo

# Interactive mode: Will prompt for monorepo mode if not specified
npx start-ts-by my-app -t user/repo
# During prompts, you'll see:
# ? Enable monorepo mode? (Remove lock files, .npmrc, and packageManager field) (y/N)

The --monorepo flag (or interactive prompt) automatically removes files that conflict with monorepo root configuration:

  • pnpm-lock.yaml, package-lock.json, yarn.lock (lock files)
  • .npmrc (package manager config)
  • packageManager field in package.json

Interactive Mode Behavior:

  • If you provide --monorepo flag when starting, it will be pre-selected in the prompts
  • If you don't provide the flag, you'll be asked during the interactive prompts
  • Default is false (not enabled) - press Enter to skip or type 'y' to enable

This is useful when creating subprojects in a monorepo where these files should be managed at the root level.

Advanced Non-interactive with Variables

# Using --vars for inline variables
npx start-ts-by my-app --ni --vars name=my-app,template=user/repo
npx start-ts-by my-app --ni --vars "removeList[0].field=README.md,removeList[0].isRemove=true"

# Using --vars-file for configuration files
npx start-ts-by my-app --ni --vars-file ./project.vars

# Combining multiple sources (vars override vars-file)
npx start-ts-by my-app --ni --vars-file ./base.vars --vars template=user/custom-repo

Variable File Format (.vars)

Create a .vars file with key=value pairs:

# project.vars
name=my-awesome-app
template=user/repo

# Nested variables for removeList
removeList[0].field=README.md
removeList[0].isRemove=true
removeList[1].field=.github
removeList[1].isRemove=false

# Execution options
execList[0].key=gitInit
execList[0].command=git init
execList[0].isExec=true

# File content (@ prefix reads from file)
# token=@./secret-token.txt

# Include other vars files
# include: ./common.vars

Template Sources with Branches/Subdirectories

npx start-ts-by my-app -t royfuwei/starter-ts-app#dev/subdir --ni
npx start-ts-by my-app -t [email protected]:group/repo.git#v2/templates --ni
npx start-ts-by my-app -t ./my-template-folder/subdir --ni

📝 Supported Template Sources & Syntax

  • GitHub

    • user/repo
    • user/repo#branch
    • user/repo#branch/subdir
    • user/repo/subdir
  • Custom Git / GitLab / Bitbucket / Gitea / etc.

    • [email protected]:group/repo.git#branch/subdir
    • https://your.gitlab/group/repo.git#tag/subdir
  • Local Folders

    • ./my-template
    • ./my-template/subdir
    • file:./my-template#subdir

⚡ How It Works

  • Removed degit dependency.
  • Uses native git commands to clone repositories based on parsed template source.
  • Local folders are copied directly.
  • Supports branch/tag and subdirectory selection for all git sources.
  • Works with GitHub, GitLab, private git servers, SSH/HTTP URLs, and local paths.

CLI Help

npx start-ts-by --help

Usage: start-ts-by [options] [command]

Start TypeScript project by git repo or local folder templates

Options:
  -V, --version                     output the version number
  -h, --help                        display help for command

Commands:
  create [options] [name]  Create a new project from a git template (Default)
  help [command]           display help for command

# Create command options:
npx start-ts-by create --help

Options:
  -t, --template <repo>             Template source (user/repo, git@domain:group/repo.git, ./local-folder)
  --skip-prompt                     Skip prompt (deprecated, use --no-interaction)
  --no-interaction, --ni            Non-interactive mode, skip all prompts
  --yes, -y                         Use defaults and skip confirmations when applicable
  --vars <pairs...>                 Variables in key=value format, supports nested keys and arrays (can be used multiple times) (default: [])
  --vars-file <path>                Path to variables file (non-JSON, supports includes)
  --strict                          Strict mode: treat duplicate keys and type conflicts as errors
  --rm <files...>                   Remove files/folders after project creation
  --no-husky                        Remove .husky
  --github                          Keep .github/workflows
  --git-init                        Run git init after creation
  --npm-install                     Run npm install after creation
  --monorepo                        Remove monorepo conflicting files (lock files, .npmrc, packageManager field)
  -h, --help                        display help for command

Variable Priority (high to low)

  1. --vars command line arguments
  2. --vars-file file contents
  3. Individual flags (-t, --rm, etc.)
  4. Environment variables
  5. Interactive input
  6. Default values

Error Handling

  • Non-interactive mode requires name and template parameters
  • Missing required parameters exit with code 2
  • File read errors and parsing failures provide specific error messages
  • --strict mode treats duplicate keys and type conflicts as errors (default: warnings)

References


Key changes:

  • degit is removed, all template fetching is handled by git commands or direct file copy.
  • Template source string is parsed to support repo URLs, branches, tags, and subdirectories.