Create TypeScript workers in the command-line with Wrangler 2.0.0+ using wrangler init
instead.
A batteries included, with the latest Wrangler, template for kick starting a TypeScript Cloudflare worker project.
Note: You must use wrangler 1.17 or newer to use this template.
This template is meant to be used with Wrangler. If you are not already familiar with the tool, we recommend that you install the tool and configure it to work with your Cloudflare account. Documentation can be found here.
To generate using Wrangler, run this command:
wrangler generate my-ts-project https://github.com/cloudflare/worker-typescript-template
src/index.ts
calls the request handler in src/handler.ts
, and will return the request method for the given request.
This template comes with jest tests utilizing Miniflare which simply test that the request handler can handle each request method. npm test
will run your tests.
This template uses prettier
to format the project. To invoke, run npm run format
.
For information on how to preview and publish your worker, please see the Wrangler docs.
If you run into issues with this specific project, please feel free to file an issue here. If the problem is with Wrangler, please file an issue here.