Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/salimkayabasi/azure-functions-typescript-template
A template project where you can start using with Azure Functions
https://github.com/salimkayabasi/azure-functions-typescript-template
azure-functions template typescript
Last synced: 7 days ago
JSON representation
A template project where you can start using with Azure Functions
- Host: GitHub
- URL: https://github.com/salimkayabasi/azure-functions-typescript-template
- Owner: salimkayabasi
- License: mit
- Created: 2021-02-09T11:44:56.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-18T11:11:18.000Z (about 2 years ago)
- Last Synced: 2024-04-10T13:58:47.606Z (7 months ago)
- Topics: azure-functions, template, typescript
- Language: JavaScript
- Homepage:
- Size: 194 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Template for Azure Functions
With this project setup, you can start implementing your next product without taking care of boiler plate work.
It uses;
* [Typescript](https://www.typescriptlang.org/) as framework to run your TS files with [Node.js](https://nodejs.org/en/)
* As a serverless compute solution, project setup will be suitable for [Azure Functions](https://azure.microsoft.com/en-us/services/functions/)## How to run it locally
Start with having local copy of local settings. There is already a file as an example.
```shell
cp local.settings.example.json local.settings.json
npm startopen http://localhost:7071/api/helloworld?name=salim
```
and you must see the response as ```HELLO FROM SALIM!```for further development details, please read these [documents](./docs/development/)