Skip to content

rafaelquintanilha/express-hello-world

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"
  }

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%