Render.com
Deploy Nitro apps to Render.com.
Preset: render_com
Set up application
Create a new Web Service and select the repository that contains your code.
Ensure the 'Node' environment is selected.
Update the start command to node .output/server/index.mjs
Click 'Advanced' and add an environment variable with NITRO_PRESET set to render_com. You may also need to add a NODE_VERSION environment variable set to 18 for the build to succeed (docs).
Click 'Create Web Service'.
Infrastructure as Code (IaC)
- Create a file called 
render.yamlwith following content at the root of your repository. 
This file followed by Infrastructure as Code on Render
services:
  - type: web
    name: <PROJECTNAME>
    env: node
    branch: main
    startCommand: node .output/server/index.mjs
    buildCommand: npx nypm install && npm run build
    envVars:
    - key: NITRO_PRESET
      value: render_com
- Create a new Blueprint Instance and select the repository containing your 
render.yamlfile. 
You should be good to go!