Skip to content

Commit 12e841d

Browse files
authored
Merge pull request #22 from fastly/kats/readme-updates
Readme updates to clarify usage (generation + iteration)
2 parents 37196de + 2dc62a9 commit 12e841d

File tree

1 file changed

+24
-9
lines changed

1 file changed

+24
-9
lines changed

README.md

+24-9
Original file line numberDiff line numberDiff line change
@@ -10,33 +10,48 @@ Node 18 or newer is required during the build step, as we now rely on its `exper
1010

1111
You have some HTML files, along with some accompanying CSS, JavaScript, image, and font files in a directory. Perhaps you've used a framework or static site generator to build these files.
1212

13-
Assuming the root of your output directory is `./public`,
13+
Assuming the root directory that contains your static files is `./public`,
1414

1515
### 1. Run `compute-js-static-publish`
1616

1717
```shell
1818
npx @fastly/compute-js-static-publish@latest --root-dir=./public
1919
```
2020

21-
This will generate a Compute application at `./compute-js`. It will add a default `./src/index.js` file that instantiates the [`PublisherServer`](#publisherserver) class and runs it to serve the static files from your project.
21+
This will generate a Compute application at `./compute-js`. It will add a default `./compute-js/src/index.js` file that instantiates the [`PublisherServer`](#publisherserver) class and runs it to serve the static files from your project.
2222

23-
> This process creates a `./static-publish.rc.js` to hold your configuration. This, as well as the other files created in your new Compute program at `./compute-js`, can be committed to source control (except for the ones we specify in `.gitignore`!)
23+
> [!TIP]
24+
> This process creates a `./compute-js/static-publish.rc.js` to hold your configuration. This, as well as the other files created in your new Compute program at `./compute-js`, can be committed to source control (except for the ones we specify in `.gitignore`!)
25+
26+
> [!IMPORTANT]
27+
> This step generates an application that includes your files and a program that serves them, and needs to be run only once. To make modifications to your application, simply make changes to your static files and rebuild it. Read the rest of this section for more details.
2428
25-
Now, each time you build this Compute project, `compute-js-static-publish` will re-scan your `./public` directory and regenerate `/src/statics-metadata.js` and `/src/statics.js`. These files hold references to your project's public files.
29+
### 2. Test your application locally
2630

27-
### 2. Test your application using [Fastly's local development server](https://developer.fastly.com/learning/compute/testing/#running-a-local-testing-server)
31+
The `start` script builds and runs your application using [Fastly's local development server](https://developer.fastly.com/learning/compute/testing/#running-a-local-testing-server).
2832

2933
```shell
3034
cd ./compute-js
3135
npm install
3236
npm run start
3337
```
3438

35-
This will serve your application using the default `PublisherServer()`.
39+
The build process scans your `./public` directory to generate files in the `./compute-js/static-publisher` directory. These files are packaged into your application's Wasm binary.
40+
41+
Once your application is running, your files will be served under `http://127.0.0.1:7676/` at the corresponding paths relative to the `./public` directory. For example, making a request to `http://127.0.0.1:7676/foo/bar.html` will attempt to serve the file at `./public/foo/bar.html`.
42+
43+
### 3. Make changes to your application
44+
45+
Now, you're free to make changes to your static files. Add, modify, or remove files in the `./public` directory, and then re-build and re-run your application by typing `npm run start` again.
46+
47+
Each time you re-build the project, `compute-js-static-publish` will re-scan your `./public` directory and regenerate the files in the `./compute-js/static-publisher` directory.
48+
49+
> [!TIP]
50+
> You can make further customizations to the behavior of your application, such as specifying directories of your static files, specifying whether to use GZIP compression on your files, specifying custom MIME types of your files, and more. You can also run custom code alongside the default server behavior, or even access the contents of the files directly from custom code. See [Advanced Usages](#advanced-usages) below for details. Rebuilding will not modify the files in your `./compute-js/src` directory, so feel safe making customizations to your code.
3651
37-
However, you can modify `/src/index.js` to add your own processing as you need. This file will not be overwritten after it is created.
52+
### 4. When you're ready to go live, deploy your Compute service
3853

39-
### 3. When you're ready to go live, [deploy your Compute service](https://developer.fastly.com/reference/cli/compute/publish/)
54+
The `deploy` script builds and [publishes your application to a Compute service in your Fastly account](https://developer.fastly.com/reference/cli/compute/publish/).
4055

4156
```shell
4257
npm run deploy
@@ -103,7 +118,7 @@ Any configuration options will be written to a `static-publish.rc.js` file, and
103118
application.
104119

105120
On subsequent builds of your Compute application, `compute-js-static-publish` will run with a special flag, `build-static`,
106-
reading from stored configuration, then scanning the `--public-dir` directory to recreate `./src/statics.js`.
121+
reading from stored configuration, then scanning the `--public-dir` directory to recreate `./compute-js/static-publisher/statics.js`.
107122

108123
Any relative file and directory paths passed at the command line are handled as relative to the current directory.
109124

0 commit comments

Comments
 (0)