anurag / express-hello-world

Express Hello World Example on Render https://render.com

Home Page:https://express.app.render.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

README

This is the Express Hello world example on Render.

The app in this repo is deployed at https://express.onrender.com.

Deployment

Create a new web service with the following values:

  • Build Command: yarn
  • Start Command: node app.js

That's it! Your web service will be live on your Render URL as soon as the build finishes.

Node versions

By default, Render uses the latest LTS version of Node.

It can also automatically detects and install the version of Node specified in the engines directive in package.json. This can be an exact version like 10.11.0 or a range like >=10.11 <10.12.

This is the relevant snippet from package.json in this repo:

  "engines": {
    "node": ">=10 <11"
  }

About

Express Hello World Example on Render https://render.com

https://express.app.render.com

License:MIT License


Languages

Language:JavaScript 100.0%