fts-dev
v1.4.0
Published
Dev Server for Functional TypeScript.
Downloads
45
Maintainers
Readme
Dev Server for Functional TypeScript.
See the main docs for more info on FTS in general.
Install
npm install -g fts-dev
Usage
Say we have the following FTS function:
// example.ts
export function example(name: string, date: Date): string {
return `${name}: ${date}`
}
You can easily create a local dev server for this function with:
fts-dev example.ts
The server defaults to port 3000.
License
MIT © Saasify