# node-package-template

> A basic node package template

Latest version **0.0.3** (published 2016-01-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install node-package-template
pnpm add node-package-template
yarn add node-package-template
bun add node-package-template
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2016-01-07 |
| First published | 2016-01-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Fintan Kearney |
| Maintainers | fintanak |
| Keywords | Node, Package, Template |

## Links

- npm: https://www.npmjs.com/package/node-package-template
- npm.io page: https://npm.io/package/node-package-template

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 0.0.3 (latest) — 2016-01-07
- 0.0.2 — 2016-01-07
- 0.0.1 — 2016-01-07
- 0.0.0 — 2016-01-07

## README

# node-package-template
A simple project in order to create and publish a node package to npmjs.org

## Publishing a developed plugin

npmjs.org signup page - https://www.npmjs.com/signup

To login via the command line on your local machine

> npm login

Enter your login details. Once you are authorized you will be able to publish modules from your machine with the following command.

> npm publish

You can also build out tests around your functionality

> npm test

This example can be found at my NPM package page (Username: fintanak) on https://www.npmjs.com/package/node-package-template

## Basic Usage

In a new project you can then download the module as a dependency and add it to your package.json file by running..

> npm install node-package-template --save

You can then use the module in your project e.g.

```javascript
var nodePackage = require("node-package-template");

console.log(nodePackage.helloWorld("Hello World!"));

---
_Source: https://npm.io/package/node-package-template · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
