Skip to content

Commit 5c07b43

Browse files
committed
switch back to express 👑
1 parent 720c06c commit 5c07b43

File tree

17 files changed

+3570
-5016
lines changed

17 files changed

+3570
-5016
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> [Not-so-much] opinionated server template, with all the important stuff<sup>1</sup>
44
5-
<sup>1</sup>: [TypeScript](https://www.typescriptlang.org), [Fastify](https://www.fastify.io/), [AVA](https://avajs.dev/), [GraphQL](https://graphql.org/), [ESLint](https://eslint.org/), [Sentry](https://sentry.io/welcome/), [nodemon](https://nodemon.io/), [dotenv](https://github.com/motdotla/dotenv), [zod](https://zod.dev), code coverage and other bits and bobs.
5+
<sup>1</sup>: [TypeScript](https://www.typescriptlang.org), [Express](https://expressjs.com/), [AVA](https://avajs.dev/), [GraphQL](https://graphql.org/), [ESLint](https://eslint.org/), [Sentry](https://sentry.io/welcome/), [nodemon](https://nodemon.io/), [dotenv](https://github.com/motdotla/dotenv), [zod](https://zod.dev), code coverage and other bits and bobs.
66

77
[![build](https://badges.iamnapo.me/ci/iamnapo/nodejs-server-template)](https://github.com/iamnapo/nodejs-server-template/actions) [![style](https://badges.iamnapo.me/style)](https://iamnapo.me)
88

@@ -15,7 +15,7 @@
1515

1616
## Prerequisites
1717

18-
- node >= 20
18+
- node >= 22
1919

2020
## Install
2121

global.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
declare namespace NodeJS {
22
interface ProcessEnv { // eslint-disable-line @typescript-eslint/consistent-type-definitions
3-
NODE_ENV: "development" | "production";
3+
NODE_ENV: "development" | "production" | "test";
44
PORT?: string;
5-
HOST?: string;
65
}
76
}

0 commit comments

Comments
 (0)