https://github.com/phe-rus/next.ts-express-custom-server
Next.ts Express Custom Server Template
https://github.com/phe-rus/next.ts-express-custom-server
custom-nextjs-server express next nextjs nextjs-express nextjs-express-template nextjs14 pherus types
Last synced: about 1 month ago
JSON representation
Next.ts Express Custom Server Template
- Host: GitHub
- URL: https://github.com/phe-rus/next.ts-express-custom-server
- Owner: phe-rus
- License: gpl-3.0
- Created: 2024-07-11T09:04:23.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-08-10T10:29:49.000Z (10 months ago)
- Last Synced: 2024-09-27T18:03:07.604Z (8 months ago)
- Topics: custom-nextjs-server, express, next, nextjs, nextjs-express, nextjs-express-template, nextjs14, pherus, types
- Language: TypeScript
- Homepage: https://pherus.org
- Size: 164 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NEXT JS/TS CUSTOM EXPRESS SERVER TEMPLATE
To get started clone the repository

```terminal
https://github.com/phe-rus/next.ts-express-custom-server.git name-your-project
```## The structure of the code
1. src/app/ : This is your fontend side of the code
2. server/index.ts : This is your backend express or whatever you decide to use side of the code and you output directory is comments
## Tree
```md
packages/button
├── server
│ ├── index.ts
├── src
│ ├── app
│ │ ├── favicon.ico
│ │ ├── pages.tsx
│ │ ├── layout.tsx
│ ├── components
│ ├── styles
│ │ ├── globals.css
├── .env
├── LICENSE
├── nodemon.json
├── postcss.config.mjs
├── package.json
├── tsconfig.json
├── next-env.d.ts
├── next.config.mjs
├── README.md
├── .gitignore
├── .eslintrc.json
├── .prettierrc.json
└── tsconfig.server.json
```server
index.ts## Notes
Your should disable .env from being pushed to a public repository in .gitignore