What's New?
Follow the latest developments on Stormkit.
December 27th, 2022
Recently we announced support for API endpoints for client-side applications. Now, you can call these endpoints periodically periodically with Trigger Functions.
December 15th, 2022
Announcing feature flags: inject them into your client-side application and control them through the UI. Instant updates, no need for deployments.
October 19th, 2022
You can now preview runtime logs from your server side rendered apps and APIs for each deployment. Expand the Deployment Menu and click on Runtime logs to access the page.

September 15th, 2022
During the build process, Stormkit generates a manifest about your application to serve files in a more optimal ways. The manifest includes information about your CDN files, API routes, redirects and whether server side rendering is enabled or not.

September 13th, 2022
The new menu layout is released. From now on, the menu will always be on the left side on Desktop versions. In order to change your environment, you can select the environment dropdown next to the application name on top of the page. To navigate within your environment, hover on the environments icon on the left menu.
August 16th, 2022
Stormkit now enables users to set feature flags for their applications. They will be available client side through the window.sk.features
object.
August 10th, 2022
Stormkit now automatically detects pnpm
projects and build them using pnpm
.
August 8th, 2022
We now display the commit sha of the deployment. Clicking on the takes you to the diff page to view the changes.

August 6th, 2022
Stormkit now supports building APIs using Node.js / Typescript 🎉. Learn more.
July 28th, 2022
Stormkit now injects the git commit sha as an environment variable during build time. This is useful to track changes with third party tools. For instance by providing the commit sha to Sentry, you can track after which specific commit the errors started to occur.

June 30th, 2022
https://github.com/stormkit-io/serverless is now open source. With serverless you can make your nodejs app run on aws lambda with minimal efford
June 9th, 2022
It's now possible to use Node.js 16 runtime. To change your Node version, go to your Application Settings and change the selected Runtime.
May 18th, 2022
Better support for next.js serverless projects. The bundle size is decreased and a bug has been fixed.
Important When deploying next.js serverless applications, do not forget to specify target: "serverless"
in next.config.js
file.
April 18th, 2022
- The Serverless toggle has been deprecated. Stormkit now understands whether your application is serverless
or not from the artifacts.
- We have removed the limit on the number of applications you can host on Stormkit based on your tier. It's
all unlimited now.
April 17th, 2022
It is now possible to view usage data by visiting App > Usage.
April 10th, 2022
Free users can now deploy up to 15 times per month.
April 9th, 2022
Stormkit users now have more flexibility on what branches to deploy automatically. To use this new
feature, visit your application's page and click on Edit configuration on the environment that you would like to modify and find the Auto Deploy Branches field to instruct Stormkit for which branches
auto deployments are turned on. The field accepts a regexp
pattern. Here are some examples:
^dependabot/.* # Deploy only branches that start with dependabot/
^(?!dependabot|renovate).* # Deploy all branches that do not start with dependabot or renovate
release-* # Deploy all branches that start with release-
The logic to determine whether a branch should be automatically deployed or not is depicted in the following diagram:
Other changes
Commit prefix
configuration option located in the application's settings page is removed- Providing
--skip-deploy
in a commit message is no longer considered
April 1st, 2022
It is now possible to overwrite default environment configuration while using Hooks API to trigger a deployment.
The Hooks API supports both GET
and POST
methods.
curl -XGET https://api.stormkit.io/hooks/app/:app-id/deploy/:token/:environment-id?publish=true|false&branch=:branch-name
curl -XPOST https://api.stormkit.io/hooks/app/:app-id/deploy/:token/:environment-id \
-H 'Content-Type: application/json'
-d '{"publish": true|false, "branch": ":branch-name"}'
You can turn on the deploy triggers from your application's settings page.
March 24th, 2022
Stormkit now supports integrating with external services to reduce vendor-lock. Read our blog post on How to Deploy to BunnyCDN for more details.