Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Serverless Functions with Netlify
Rating: 4.8 out of 5(140 ratings)
1,677 students

Serverless Functions with Netlify

Add Cool Features to Your Front-End Apps Without Building a Server
Created byYanis Smilga
Last updated 3/2024
English
English [Auto],

What you'll learn

  • serverless functions

Course content

5 sections71 lectures7h 49m total length
  • Introduction6:08

    Learn how serverless functions with Netlify enable dynamic features with minimal code and no server setup. Use JavaScript to build features like hidden API keys and secure payments with Stripe.

  • Netlify and Other Services2:06

    Explore serverless functions with Netlify across major cloud providers. Deploy projects and test them locally, using free accounts to explore features with external services and endless possibilities.

  • Front-End1:40

    Explore how the front end communicates with serverless service functions via endpoints in a framework-agnostic way, and build a final React app with serverless functions, noting gotchas and deployment considerations.

  • Requirements1:44

    Install node and npm packages to follow this advanced serverless functions with netlify course, using vanilla js and htp or ajax requests, and verify with node -v.

  • Text Editor0:58

    Learn how to optimize your text editor with Visual Studio Code, explore recommended extensions and settings, and reference a setup repo for details.

  • Video Blur Fix1:35

    Troubleshoot video playback in this course by manually setting the video resolution to 720p to prevent blurring, and note that transcript accuracy may vary with no fix available.

  • Course Review0:30

    Learn to provide brief feedback of one or two sentences for the Netlify serverless functions course, so the instructor can understand what you like or dislike and improve future courses.

Requirements

  • html
  • css
  • javascript
  • node installed

Description

Welcome to Serverless Functions Course.

I guess let’s start by answering the most pressing question first. What is a serverless function and why should we care? So, here is the deal. There are times when our app needs a dynamic feature and even after that 20th google search, we inevitably come to realization that the only way do it, is by building and hosting our own server. A good example would be setting up a stripe payment flow. There is a better solution though.

Serverless Functions.

Ok, but what is a serverless function? Well, despite the name, serverless function actually does not mean that there is no server. What it simply means, is that someone else is responsible for maintaining it . We, as front-end developers only need to setup our desired functionality, and the cloud provider will take care of the rest. What also really cool, we can continue to use our favorite programming language – Javascript. Most cloud providers offer some solution of serverless functions but for this course we will hosting company by the name of Netlify. We will use Netlify because they offer generous free tier and make it very easy,  to get up and running with serverless functions.

Here are the serverless functions examples/setups were are going to cover during the course.

- Basic “Hello World”

- Basic API (with local data)

- Complex API (with Airtable)

- Survey

- Open Weather API

- Newsletter

- Send Email / Submit Form

- Stripe Payment

Who this course is for:

  • Devs interested in serverless functions