# @intouchg/fastify

> Starter template for NodeJS Fastify server

Latest version **0.1.0** (published 2021-10-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install @intouchg/fastify
pnpm add @intouchg/fastify
yarn add @intouchg/fastify
bun add @intouchg/fastify
```

## 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.1.0 |
| Published | 2021-10-05 |
| First published | 2021-10-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Unpacked size | 17 KB |
| Known vulnerabilities | 0 (+6 in 3 direct dependencies) |
| Install scripts | no |
| Author | Intouch Group |
| Maintainers | codynova, jacobshepherd |

## Links

- npm: https://www.npmjs.com/package/@intouchg/fastify
- Repository: https://intazdoweb.intouchsol.com/IntouchDesignSystem/IntouchDesignSystem/_git/fastify
- npm.io page: https://npm.io/package/@intouchg/fastify

## Dependencies (5)

- [dotenv](https://npm.io/package/dotenv.md) 10.0.0
- [fastify](https://npm.io/package/fastify.md) 3.18.1
- [@babel/runtime](https://npm.io/package/@babel/runtime.md) 7.14.6
- [fastify-static](https://npm.io/package/fastify-static.md) 4.2.2
- [fastify-http-proxy](https://npm.io/package/fastify-http-proxy.md) 6.0.0

## Recent versions

- 0.1.0 (latest) — 2021-10-05

## README

# @intouchg/fastify

Starter template for NodeJS Fastify server


## Creating a new project

1. Clone the starter repo, renaming it according to your new project
```sh
git clone https://intazdoweb.intouchsol.com/IntouchDesignSystem/IntouchDesignSystem/_git/fastify NEW_PROJECT_FOLDER_NAME
```

2. Navigate into the new project folder and delete the existing git repo
```sh
cd NEW_PROJECT_FOLDER_NAME && rm -rf .git
```

3. Update the package.json `name`, `description`, and `repository` fields

4. Install dependencies to generate the yarn.lock file
```sh
yarn
```

5. Initialize a new git repo and create the initial commit
```sh
git init && git add . && git commit -m 'Initial commit'
```

6. Add your new project's git repo url as the git remote
```sh
git remote add origin NEW_PROJECT_GIT_REPO_URL
```

7. Finished! Push your code to the repo
```
git push origin master
```


## Developing a project

1. Navigate into the project directory
```sh
cd MY_PROJECT_NAME
```

2. Run the dev server
```sh
yarn dev
```

3. Or build for production
```sh
yarn build
```

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