An open API service indexing awesome lists of open source software.

https://github.com/rebeccastevens/template-typescript-node-package


https://github.com/rebeccastevens/template-typescript-node-package

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Template for my Node Packages

[![npm version](https://img.shields.io/npm/v/__package_name__.svg)](https://www.npmjs.com/package/__package_name__)
[![jsr Version](https://img.shields.io/jsr/v/__package_name__.svg)](https://jsr.io/__package_name__)
[![CI](https://github.com/RebeccaStevens/template-typescript-node-package/actions/workflows/release.yml/badge.svg)](https://github.com/RebeccaStevens/template-typescript-node-package/actions/workflows/release.yml)
[![Coverage Status](https://codecov.io/gh/RebeccaStevens/template-typescript-node-package/branch/main/graph/badge.svg?token=MVpR1oAbIT)](https://codecov.io/gh/RebeccaStevens/template-typescript-node-package)\
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
[![GitHub Discussions](https://img.shields.io/github/discussions/RebeccaStevens/template-typescript-node-package?style=flat-square)](https://github.com/RebeccaStevens/template-typescript-node-package/discussions)
[![BSD 3 Clause license](https://img.shields.io/github/license/RebeccaStevens/template-typescript-node-package.svg?style=flat-square)](https://opensource.org/licenses/BSD-3-Clause)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square)](https://commitizen.github.io/cz-cli/)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)

## Donate

[Any donations would be much appreciated](./DONATIONS.md). 😄

### Enterprise Users

`__package_name__` is available as part of the [Tidelift Subscription](https://tidelift.com/funding/github/npm/__package_name__).

Tidelift is working with the maintainers of `__package_name__` and a growing network of open source maintainers
to ensure your open source software supply chain meets enterprise standards now and into the future.
[Learn more.](https://tidelift.com/subscription/pkg/npm-__package_name__?utm_source=npm-__package_name__&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)

## Installation

### npm

```sh
# Install with npm
npm install __package_name__

# Install with pnpm
pnpm add __package_name__

# Install with yarn
yarn add __package_name__

# Install with bun
bun add __package_name__
```

### jsr

```sh
# Install in a node project
npx jsr add __package_name__

# Install in a deno project
deno add jsr:__package_name__

# Install in a bun project
bunx jsr add __package_name__
```