Skip to content

A modern, lightweight TypeScript SDK starter template with all the best practices

License

Notifications You must be signed in to change notification settings

SchoonLabs/typescript-sdk-starter

Repository files navigation

TypeScript SDK Starter

A modern, lightweight TypeScript SDK starter template with all the best practices.

Features

  • πŸ“¦ tsup for bundling
  • ⚑️ Vitest for testing
  • πŸ“ TypeScript strict mode
  • πŸ”¨ ESLint + Prettier
  • πŸ“‹ Example usage
  • πŸš€ GitHub Actions CI
  • πŸ“¦ pnpm for fast, efficient package management

Quick Start

# Install dependencies
pnpm install

# Run tests
pnpm test

# Build
pnpm build

# Development mode
pnpm dev

Usage

import { greet, SDK } from 'typescript-sdk-starter';

// Basic greeting
console.log(greet({ name: 'World' }));
// => "Hello, World"

// SDK usage
const sdk = new SDK('my-api-key');
console.log(sdk.getApiKey());
// => "my-api-key"

Scripts

  • pnpm build - Build for production
  • pnpm dev - Build in watch mode
  • pnpm test - Run tests
  • pnpm test:watch - Run tests in watch mode
  • pnpm typecheck - Check types
  • pnpm lint - Lint code
  • pnpm lint:fix - Fix lint issues
  • pnpm format - Format code

License

MIT

About

A modern, lightweight TypeScript SDK starter template with all the best practices

Topics

Resources

License

Stars

Watchers

Forks