nodejs:nextjs-example
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
nodejs:nextjs-example [2024/04/06 02:56] – kirtisingh | nodejs:nextjs-example [2024/04/06 03:06] (current) – kirtisingh | ||
---|---|---|---|
Line 1: | Line 1: | ||
===How to run Next.js on N99panel=== | ===How to run Next.js on N99panel=== | ||
- | Here we would provide by an example of how to setup a Next.js app. As Next.js requires NodeJS version 18 or above on the command line, kindly follow the article, [[: | + | Here we would provide by an example of how to setup a Next.js app. As Next.js requires NodeJS version 18 or above on the command line, kindly follow the article, [[: |
+ | |||
+ | **Importantly, | ||
The example which we are going to follow in this case is mentioned at https:// | The example which we are going to follow in this case is mentioned at https:// | ||
+ | |||
+ | **Step 1 :** SSH as the user under whose VHost/ | ||
+ | |||
+ | **Step 2 :** Change directory to node_apps using the command | ||
+ | |||
+ | < | ||
+ | cd node_apps | ||
+ | </ | ||
+ | |||
+ | **Step 3 :** Install the App using the command | ||
+ | |||
+ | < | ||
+ | npx create-next-app@latest nextjs-blog --use-npm --example " | ||
+ | </ | ||
+ | |||
+ | The above command will install the app under the folder nextjs-blog | ||
+ | |||
+ | Now change the directory to nextjs-blog folder | ||
+ | |||
+ | < | ||
+ | cd nextjs-blog | ||
+ | </ | ||
+ | |||
+ | Now initially we need to run the App under N99panel’s NodeJS’s Development mode at a port number as specified while linking the App from under N99panel. Here this author assume’s that the port number is 50011 . And later we plan to run this App in N99panel’s NodeJS’s Production mode at port number 40011. Therefore we need to appropriately adjust its package.json as under | ||
+ | |||
+ | < | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | }, | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | }, | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Now we just need to start the App using the command | ||
+ | |||
+ | < | ||
+ | npm run dev | ||
+ | </ | ||
+ | |||
+ | Now from within N99panel console, link a Node App in [[: | ||
+ | |||
+ | App Web Path : /\\ | ||
+ | App Port : 50011\\ | ||
+ | App Mode : Development\\ | ||
+ | |||
+ | If you have properly linked your App from within N99panel’s console, you should be able to see a working App on your App URL which in this case is just / | ||
+ | |||
+ | If the App does not work at this stage, you need to resolve the issues pertaining to it before moving to the next step i.e. running the App in production mode. | ||
+ | |||
+ | **Step 4 :** If your app is running as mentioned above, you need to stop it in your SSH console use Ctrl+c . And also unlink/ | ||
+ | |||
+ | **Step 5 :** To prepare the App for [[: | ||
+ | |||
+ | < | ||
+ | npm run build | ||
+ | </ | ||
+ | |||
+ | **Step 6 :** Now from within N99panel console, link a Node App in [[: | ||
+ | |||
+ | App Web Path : /\\ | ||
+ | App Port : 40011\\ | ||
+ | App Mode : Production (npm start)\\ | ||
+ | Prod. filesystem Path : nextjs-blog\\ | ||
+ | Prod. Node Version : 18\\ | ||
+ | |||
+ | Now save it and wait for at-least one min to check via browser whether your App has come online or not. | ||
+ | |||
+ | Conclusion : Here we have seen that it is not that complicated to setup your Next.js App from within N99panel. For any questions/ |
nodejs/nextjs-example.1712372174.txt.gz · Last modified: 2024/04/06 02:56 by kirtisingh