This is just a quick simple example of course more complex applications will work as well.
Prerequisites
Step 1
Create an account with Vercel if you don't already have one.
Vercel is a cloud platform for static sites and Serverless Functions that fits perfectly with your workflow. It enables developers to host Jamstack websites and web services that deploy instantly, scale automatically, and requires no supervision, all with no configuration.
Step 2
Use npm to install Vercel globally on your computer https://www.npmjs.com/package/vercel
npm i -g vercel
Setup the project
Create a project
mkdir vercel-node-app
cd vercel-node-app
touch index.js
npm init -y
npm i express
Open the project in your code editor and then create a Node server in the index.js
file
const express = require('express');
const app = express();
app.get('/', (req, res) => res.send('Home Page Route'));
app.get('/about', (req, res) => res.send('About Page Route'));
app.get('/portfolio', (req, res) => res.send('Portfolio Page Route'));
app.get('/contact', (req, res) => res.send('Contact Page Route'));
const port = process.env.PORT || 3000;
app.listen(port, () => console.log(`Server running on ${port}, http://localhost:${port}`));
Create a run script in the package.json
file
"scripts": {
"start": "node index.js"
},
Run the command below to see your Node app working locally in the browser
npm run start
Deploying to Vercel
Make sure that you are in the root folder for your project and then run the command vercel
in your terminal.
Use the project setup settings below as a guide to setup your own project with Vercel.
? Set up and deploy β~/Desktop/username/vercel-node-appβ? [Y/n] y
? Which scope do you want to deploy to? username
? Link to existing project? [y/N] n
? Whatβs your projectβs name? vercel-node-app
? In which directory is your code located? ./
No framework detected. Default Project Settings:
- Build Command: `npm run vercel-build` or `npm run build`
- Output Directory: `public` if it exists, or `.`
- Development Command: None
? Want to override the settings? [y/N] n
Once that is complete it is going to give you some links. The app is NOT going to work yet it is only going to show you the code inside of your index.js
file. You need to create a vercel.json
file and put it in the root folder so that Vercel knows that it is a Node application. And it is very important that your index.js
file remains in the root folder along with your other server side code for the project otherwise your app won't work.
Create a vercel.json
file and put it in the root of your project folder and then add the code below
{
"version": 2,
"builds": [
{
"src": "./index.js",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/"
}
]
}
Now run the command vercel
again to deploy your app. Open the Production link and your app should be working online with full working routes.
Top comments (1)
Managed IT solutions give you the peace of mind that comes with being in control. If you have a business or are a small-business owner, you know how stressful it can be to manage all the details. You want to make sure everything is running smoothly, but you don't have time for that kind of responsibility. Additionally, Managed IT solutions Cape Girardeau provide the expertise you need to keep your business running smoothly. Whether you're looking for a simple network upgrade or more complex server management, managed IT solutions can help. These professionals will handle all of your technology needs and ensure that your systems are up-to-date and secure.