https://github.com/al3rez/example-hello-world-functions
https://github.com/al3rez/example-hello-world-functions
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/al3rez/example-hello-world-functions
- Owner: al3rez
- Created: 2025-03-26T15:14:10.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-26T15:14:35.000Z (about 1 year ago)
- Last Synced: 2025-10-09T10:39:17.573Z (8 months ago)
- Language: HTML
- Size: 93.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# Hello world functions
**View this demo site**: https://example-hello-world-function.netlify.app/
[](https://app.netlify.com/sites/example-hello-world-function/deploys)
## About this example site
This site shows a very simple "Hello World" example of developing and running serverless functions with Netlify Functions. It includes links to a deployed serverless function and an example of accessing the function using a customized URL.
- [About Netlify Functions](https://www.netlify.com/products/functions/?utm_campaign=dx-examples&utm_source=example-site&utm_medium=web&utm_content=example-hello-functions)
- [Docs: Netlify Functions](https://docs.netlify.com/functions/overview/?utm_campaign=dx-examples&utm_source=example-site&utm_medium=web&utm_content=example-hello-functions)
- [Accessing your function logs](https://docs.netlify.com/functions/logs/?utm_campaign=dx-examples&utm_source=example-site&utm_medium=web&utm_content=example-hello-functions)
- [Learn serverless in the functions playground](https://functions.netlify.com/?utm_campaign=dx-examples&utm_source=example-site&utm_medium=web&utm_content=example-hello-functions)
## Speedily deploy your own version
Deploy your own version of this example site, by clicking the Deploy to Netlify Button below. This will automatically:
- Clone a copy of this repo to your own GitHub account
- Create a new project in your [Netlify account](https://app.netlify.com/?utm_medium=social&utm_source=github&utm_campaign=devex-ph&utm_content=devex-examples), linked to your new repo
- Create an automated deployment pipeline to watch for changes on your repo
- Build and deploy your new site
[](https://app.netlify.com/start/deploy?repository=https://github.com/netlify/example-hello-world-functions&utm_medium=social&utm_source=github&utm_campaign=devex-ph&utm_content=devex-examples)
## Install and run this example locally
You can clone this example repo to explore its features and implementation, and to run it locally.
```shell
# 1. Clone the repository to your local development environment
git clone git@github.com:netlify/example-hello-world-functions.git
# 2. Move into the project directory
cd example-hello-world-functions
# 3. Install the Netlify CLI to let you locally serve your site using Netlify's features
npm install -g netlify-cli
# 4. Serve your site using Netlify Dev to get local serverless functions
netlify dev
```