Back
2021 / June / 07

New modules supported at runtime
To allow running multi-tenants on the same instance using isolates it was necessary to limit some of the Node.js APIs and some limited ones, recently we are working on supporting the modules in a safe way.
- Supported
tty(Limited) - Supported
os
To learn more about modules that are not supported, see our limits documentation.
New example: ToDo Service with FaunaDB
We've added a new example to our collection of examples with the Fleet Serverless Function, an example creating APIs for implementing ToDo using FaunaDB.
| Method | Path | Description |
|---|---|---|
| DELETE | /todo/:id |
Delete an item from the list |
| GET | /todo/:id |
Get an item from the list |
| GET | /todo |
Get all items from the list |
| POST | /todo |
Add a new item to the list |
| PUT | /todo/:id |
Update a list item |
Other improvements and fixes
- Fixed error when invoking a function that has dynamic path
- Updated the Node.js runtime to v14.16.1 (LTS)