Question

How to use TypeScript in a Functions (serverless) Project

I’m getting familiar with the new Functions offering and I see a variety of languages supported. Since my project is heavily typed, I would like to use TypeScript instead of vanilla JavaScript. I cannot find any example projects.

Is this even possible or with how Functions are build, it can only be JavaScript within the repo that will be tied to “Apps” for production use?


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

@kisonay

I’ve been working on a CLI library (docts) which enhances the development experience for Typescript function projects.

It allows you to:

  1. Create a new TS project using a familiar file structure

  2. Add/Remove functions to/from your project with automatic project.yml update

  3. Manage all function dependencies from the project package.json instead of individual package.json

  4. Build your project to get the packages which can then be deployed on App Platform or a function namespace

Check it out on Github and on NPM

If you find it helpful, kindly leave a star on the project

It’s not mentioned in the Getting Started guide, but doctl serverless init now supports typescript.

So you can create a new typescript function with

doctl serverless init --language typescript <example-project>

I was wondering this too, but it looks like only javascript is supported. You can see the supported languages/frameworks by running:

doctl serverless status --languages

and typescript is not listed. I also tested it though by using a .ts file, which deployed fine but when I tried to invoke it, it returned an error that “The action did not initialize properly.” This is very unfortunate in my opinion since all of my projects are in typescript now, hopefully the DigitalOcean team will catch up and add typescript support to functions

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel