Skip to content

Commit 278f3ce

Browse files
authored
update docs for CRAL with netlify dev (#30)
update docs for CRAL with netlify dev
2 parents e4d0054 + 3948599 commit 278f3ce

File tree

6 files changed

+712
-13654
lines changed

6 files changed

+712
-13654
lines changed

README.md

+34-39
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
1-
> ⚠️You may not need `netlify-lambda`. [Netlify Dev](https://github.com/netlify/netlify-dev-plugin) works with `create-react-app` out of the box, give it a try! Only use `netlify-lambda` if you need a build step for your functions. [See its README for details](https://github.com/netlify/netlify-lambda/blob/master/README.md#netlify-lambda).
1+
## Create-React-App-Lambda
22

3-
This project is based on latest versions of [Create React App v3](https://github.com/facebookincubator/create-react-app) and [netlify-lambda v1](https://github.com/netlify/netlify-lambda).
3+
This project is a reference demo showing you how to use [Create React App v3](https://github.com/facebookincubator/create-react-app) and [netlify-lambda v1](https://github.com/netlify/netlify-lambda) together in a [Netlify Dev](https://github.com/netlify/netlify-dev-plugin) workflow.
44

5-
The main addition to base Create-React-App is a new folder: `src/lambda`. Each JavaScript file in there will be built for Lambda function deployment in `/built-lambda`, specified in [`netlify.toml`](https://www.netlify.com/docs/netlify-toml-reference/).
5+
⚠️NOTE: You may not need this project at all. [Netlify Dev](https://github.com/netlify/netlify-dev-plugin) already works with `create-react-app` out of the box! **Only use `netlify-lambda` if you need a build step for your functions** [See its README for details](https://github.com/netlify/netlify-lambda/blob/master/README.md#netlify-lambda), eg if you want to use Babel or TypeScript.
66

7-
As an example, we've included a small `src/lambda/hello.js` function, which will be deployed to `/.netlify/functions/hello`. We've also included an async lambda example using async/await syntax in `async-chuck-norris.js`.
7+
## Project Setup
8+
9+
Source: The main addition to base Create-React-App is a new folder: `src/lambda`. This folder is specified and can be changed in the `package.json` script: `"build:lambda": "netlify-lambda build src/lambda"`.
10+
11+
Dist: Each JavaScript file in there will be built for Lambda function deployment in `/built-lambda`, specified in [`netlify.toml`](https://www.netlify.com/docs/netlify-toml-reference/).
12+
13+
As an example, we've included a small `src/lambda/hello.js` function, which will be deployed to `/.netlify/functions/hello`. We've also included an async lambda example using async/await syntax in `async-dadjoke.js`.
14+
15+
Your functions will be available locally at
816

917
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/netlify/create-react-app-lambda)
1018

@@ -18,60 +26,47 @@ All functions are compiled with webpack using the Babel Loader, so you can use m
1826

1927
## Local Development
2028

21-
Before developing, clone the repository and run `yarn` from the root of the repo to install all dependencies.
22-
23-
### Start both servers concurrently
24-
25-
From inside the project folder, run:
26-
27-
```
28-
yarn start
29-
```
30-
31-
This will run both `yarn start:lambda` and `yarn start:app` at the same time (more information about the commands can be found below).
32-
33-
> Note: You don't need this if you use [`netlify dev`](https://github.com/netlify/netlify-dev-plugin/) as [function builder detection](https://www.netlify.com/blog/2019/04/24/zero-config-yet-technology-agnostic-how-netlify-dev-detectors-work/) does that for you.
34-
35-
### Start each server individually
36-
37-
**Run the functions dev server**
38-
39-
From inside the project folder, run:
29+
```bash
30+
## prep steps for first time users
31+
npm i -g netlify-cli # Make sure you have the [Netlify CLI](https://github.com/netlify/cli) installed
32+
git clone https://github.com/netlify/create-react-app-lambda ## clone this repo
33+
cd create-react-app-lambda ## change into this repo
34+
yarn # install all dependencies
4035

41-
```
42-
yarn start:lambda
36+
## done every time you start up this project
37+
ntl dev ## nice shortcut for `neltify dev`
4338
```
4439

45-
This will open a local server running at `http://localhost:9000` serving your Lambda functions, updating as you make changes in the `src/lambda` folder.
40+
This fires up [Netlify Dev](https://github.com/netlify/netlify-dev-plugin/), which:
4641

47-
You can then access your functions directly at `http://localhost:9000/{function_name}`, but to access them with the app, you'll need to start the app dev server. Under the hood, this uses `react-scripts`' [advanced proxy feature](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#configuring-the-proxy-manually) with the `setupProxy.js` file.
42+
- Detects that you are running a `create-react-app` project and runs the npm script that contains `react-scripts start`, which in this project is the `start` script
43+
- Detects that you use `netlify-lambda` as a [function builder](https://github.com/netlify/netlify-dev-plugin/#function-builders-function-builder-detection-and-relationship-with-netlify-lambda), and runs the npm script that contains `netlify-lambda build`, which in this project is the `build:lambda` script.
4844

49-
**Run the app dev server**
45+
You can view the project locally via Netlify Dev, via `localhost:8888`.
5046

51-
While the functions server is still running, open a new terminal tab and run:
47+
Each function will be available at the same port as well: `http://localhost:8888/.netlify/functions/hello` and `http://localhost:8888/.netlify/functions/async-dadjoke`.
5248

53-
```
54-
yarn start
55-
```
49+
## Deployment
5650

57-
This will start the normal create-react-app dev server and open your app at `http://localhost:3000`.
51+
During deployment, this project is configured, inside `netlify.toml` to run the build `command`: `yarn build`.
5852

59-
Local in-app requests to the relative path `/.netlify/functions/*` will automatically be proxied to the local functions dev server.
53+
`yarn build` corresponds to the npm script `build`, which uses `npm-run-all` (aka `run-p`) to concurrently run `"build:app"` (aka `react-scripts build`) and `build:lambda` (aka `netlify-lambda build src/lambda`).
6054

6155
## Typescript
6256

6357
<details>
6458
<summary>
6559
<b id="typescript">Click for instructions</b>
6660
</summary>
67-
You can use Typescript in both your React code (with `react-scripts` v2.1+) and your lambda functions )with `netlify-lambda` v1.1+). Follow these instructions:
61+
62+
You can use Typescript in both your frontend React code (with `react-scripts` v2.1+) and your serverless functions (with `netlify-lambda` v1.1+). Follow these instructions:
6863

6964
1. `yarn add -D typescript @types/node @types/react @types/react-dom @babel/preset-typescript @types/aws-lambda`
7065
2. convert `src/lambda/hello.js` to `src/lambda/hello.ts`
7166
3. use types in your event handler:
7267

7368
```ts
74-
import { Handler, Context, Callback, APIGatewayEvent } from "aws-lambda"
69+
import { Handler, Context, Callback, APIGatewayEvent } from 'aws-lambda'
7570

7671
interface HelloResponse {
7772
statusCode: number
@@ -84,8 +79,8 @@ const handler: Handler = (event: APIGatewayEvent, context: Context, callback: Ca
8479
statusCode: 200,
8580
body: JSON.stringify({
8681
msg: `Hello world ${Math.floor(Math.random() * 10)}`,
87-
params
88-
})
82+
params,
83+
}),
8984
}
9085

9186
callback(undefined, response)
@@ -108,4 +103,4 @@ For a full demo of routing and authentication, check this branch: https://github
108103

109104
## Service Worker
110105

111-
The service worker does not work with lambda functions out of the box. It prevents calling the function and returns the app itself instead ([Read more](https://github.com/facebook/create-react-app/issues/2237#issuecomment-302693219)). To solve this you have to eject and enhance the service worker configuration in the webpack config. Whitelist the path of your lambda function and you are good to go.
106+
`create-react-app`'s default service worker (in `src/index.js`) does not work with lambda functions out of the box. It prevents calling the function and returns the app itself instead ([Read more](https://github.com/facebook/create-react-app/issues/2237#issuecomment-302693219)). To solve this you have to eject and enhance the service worker configuration in the webpack config. Whitelist the path of your lambda function and you are good to go.

netlify.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[build]
2-
command = "yarn build"
3-
functions = "built-lambda"
4-
publish = "build"
2+
command = "yarn build" # the command you run to build this file
3+
functions = "built-lambda" # netlify-lambda builds to this folder AND Netlify reads functions from here
4+
publish = "build" # create-react-app builds to this folder, Netlify should serve all these files statically

0 commit comments

Comments
 (0)