Skip to content

Implements the Expressjs Hello World example to provide a faster start deploying on the Cyclic platform

License

Notifications You must be signed in to change notification settings

pranavxc/express-hello-world

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cyclic - Express Hello World

bump

This is a basic starter Expressjs app with:

  • Static file hosting
  • Logging Middleware
  • Catch-all handler that echoes request info

Quick Start

Local Quick Start

If you want to setup your dev account and deploy with git push

  • Fork this repo (or deploy above)
  • Clone to your local
  • Install dependencies npm install
  • Run locally npm serve
  • Make requests
    • Browser: http://localhost:3000/some/path?q=query+one&q=second+query&single=value
    • Command line: curl -i -XGET "http://localhost:3000/cmd/line-curl"
  • Deploy on Cyclic

Cyclic Runtime

  • Cyclic hosts your app on serverless infrastructure. That means there is no guarantee of memory or file system persistence between requests.
  • The runtime expects a nodejs entry point defined as:
    • package.json "main" field defines the entry point file (if missing uses index.js)
    • Entry point starts a server on process.env.PORT

Say Hi

Ask a question or give us a shout out:

About

Implements the Expressjs Hello World example to provide a faster start deploying on the Cyclic platform

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 81.3%
  • HTML 13.0%
  • CSS 5.7%