Free PaaS (for Node.js, Java, And More)

Google App Engine: extra cloud features
If you want to deploy highly scalable applications on a fully managed serverless platform, but don't need continuous integration and delivery tools and third-party add-ons, Google App Engine
is the right choice.
Out of the box supported languages include: Java, PHP, Node.js, Python, C#, .Net, Ruby and Go.
In addition to hosting your application, you get the following features for free:
- 5 GB Months regional storage with Cloud Storage
- 1 GB Firestore storage
- 10 GB Pub/Sub messages per month
- 2 million Cloud Functions invocations per month
- 50 GB of logs with 30 day retention with Stackdriver
- 2 million Cloud Run requests per month
- 1 Compute Engine F1-micro instance per month
Quotas and limitations
- Up to 256 MB of memory for Java 11, Node 8+, Python 3.7+, PHP 7.2+, Ruby 2.5+ and Go 1.12+ (128 MB for other supported technologies: source)
- 28 free hours per day: shared by all your apps, enough for 1 app (see
Tips
for more info) - 1 GB app size (Code & Static Data Storage)
- No single static data file can be larger than 32MB. The limit for Go is 64MB
- Outgoing Bandwidth: 1 GB / day
- Each incoming HTTP request can be no larger than 32MB
Getting started
You don't need to activate the trial to create an app engine project:
- Navigate to the App Engine dashboard and login to your google account if necessary.
- Create your project, then the application
- Select a region (Available regions & zones)
- Select your programming language and keep the standard environment selected (the other option is not free)
- Follow the quickstart guide relative to your programming language to prepare your web app and necessary config files
- You can deploy using a plugin for your project's build tool when available. You can also deploy your app by executing
gcloud app deploy
from the Google Cloud SDK Shell within your app's root directory (may require to add a billing method) - After deploying the app, you can view the quota limits from the Quotas page
Tips
When you deploy your app to Google App Engine, it's automatically associated to one of the following instance types:
- Frontend Instance: 28 free F1 instance-hours per day
- Backend Instance: 9 free B1 instance-hours per day
By default, your app is assumed to be a Frontend Instance with automatic scaling. But if you change the
app.yaml
in your root directory, and introduce a configuration to enable the Basic or Manual scaling, your app will become assumed to be a Backend Instance. To ensure that your app usage will always be free, you can define the following properties in yourapp.yaml
file... instance_class: F1 automatic_scaling: max_instances: 1 ...
Add the
--quiet
flag to your gcloud command to disable all interactive promptsWhen deploying using a gcloud command, specify explicitly your app's version to avoid having multiple instances being billed thus reducing your daily free hours allowance. A glcoud deploy command example would be:
gcloud --quiet app deploy --version=production
References



Heroku: seamless CI/CD and add-ons
If you need a fully-managed platform that gives you the simplest path to delivering apps quickly, seamless continuous integration and delivery tools, third party add-ons and a developer friendly dashboard, Heroku is the answer.
The officially supported languages are Java, Node.js, Python, PHP, Ruby, Go, Scala and Clojure, but more languages are available via Buildpacks (a set of scripts responsible for transforming your code into a compiled output ready to be executed).
In addition to hosting your application for free, Heroku provides you with:
- Cloud storage with:
- Heroku Postgres:
- 10k Rows
- 20 Concurrent Connections
- Heroku Redis
- 25 MB RAM
- 20 Concurrent Connections
- More limited free data stores can be added via add-ons provided by partners, such as Redis, MongoDB, MySQL, and Neo4j Graph.
- Heroku Postgres:
Quotas and limitations
- Up to 512 MB RAM
- 1000 free hours (550 if your account is not verified) per month: shared by all your apps, enough for 1 app
- Up to 5 free apps (unverified) or 100 (verified)
- 500 MB app size (Slug Size)
- Network Bandwidth: 2 TB / month (Soft limit)
- Request Length: 30 seconds
- The app sleeps after 30 minutes of inactivity
Getting started
- Navigate to the Heroku homepage and click
Sign up for free
- Fill sign up form and press
Create free account
- Click confirmation link to your email, then set your password and click
Set password and log in
- Create a new app
- Enter your app's name and choose region
- You can now deploy your app by choosing one of the 3 options:
- Heroku Git: Requires the Heroku CLI to be installed. You can directly push your local branch to the Heroku remote to trigger a deployment
- GitHub: You will connect your Github repository to Heroku and select a branch to deploy automatically whenever it is pushed to
- Container Registry: Requires Docker to be set up locally and the Heroku CLI to be installed.
- You can follow your deployment logs and roll back to a previous version of your app from the
Activity
page - You can view your app's logs from the
Application Logs
page - The
Settings
page allow you to change your app's name, configure environment variables, view your slug size, add buildpacks and add custom domains.
References

Red Hat OpenShift Online: Generous resources with Docker & Kubernetes support
OpenShift Online is Red Hat's public cloud application deployment and hosting platform that is based on a containerized infrastructure. It offers a free starter plan to deploy apps for learning, experimenting and development purposes or if you need a testing environment.
You can build and deploy your app using a git repository or you can directly deploy an application from an existing Docker image or Image Stream. Source code builders are available for Java, Node.js, Python, Ruby, .NET Core, PHP, Perl, Scala and Go. It also supports Nginx, Apache HTTP Server (httpd), WildFly.
Quotas and limitations
- Up to 2 GB RAM
- 1 project
- 2 GB persistent storage
- The app sleeps after 30 minutes of inactivity, and must sleep 18 hours in a 72-hour period
- The project is destroyed automatically after 60 days, but you can redeploy it after this period
Getting started
- Sign up and log in using this page
- Select the OpenShift Online plan
- Confirm your subscription
- Wait for your account provisioning
- After receiving the provisioning email, refresh the page and open the Web Console
- Create a new project
To deploy your app:
- Choose your technology stack from the catalog
- Enter your git repository link, or click
Try Sample
to auto fill with a suggested starter project - Wait for the build to complete
- Access your app using the link provided in
Routes
You can also deploy using a yaml file. Two formats are available:
Deployments: Kubernetes format
Deployment Configs: OKD format
References






Soufiane Sakhi is an AWS Certified Solutions Architect – Associate and a professional full stack developer based in Paris, France. He is the creator of Simply-how.com, the My Route Directions Android app, and many open source browser extensions such as YouTube Playlist Helper and Feedly filtering and sorting.