Skip to content

Latest commit

 

History

History
54 lines (42 loc) · 1.28 KB

README.md

File metadata and controls

54 lines (42 loc) · 1.28 KB

NEXT JS/TS CUSTOM EXPRESS SERVER TEMPLATE

To get started clone the repository

next.ts express custom server

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

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