Skip to content

Commit f78cf17

Browse files
committed
feat: crawl pages
1 parent 4658c5c commit f78cf17

21 files changed

+4017
-5024
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Ship js Manual Prepare
2+
on:
3+
issue_comment:
4+
types: [created]
5+
jobs:
6+
manual_prepare:
7+
if: |
8+
github.event_name == 'issue_comment' &&
9+
(github.event.comment.author_association == 'member' || github.event.comment.author_association == 'owner') &&
10+
startsWith(github.event.comment.body, '@shipjs prepare')
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
with:
15+
fetch-depth: 0
16+
ref: master
17+
- uses: actions/setup-node@v1
18+
with:
19+
node-version: '12'
20+
- run: |
21+
if [ -f "yarn.lock" ]; then
22+
yarn install
23+
else
24+
npm install
25+
fi
26+
- run: |
27+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
28+
git config --global user.name "github-actions[bot]"
29+
- run: npm run release -- --yes --no-browse
30+
env:
31+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32+
SLACK_INCOMING_HOOK: ${{ secrets.SLACK_INCOMING_HOOK }}
33+
34+
create_done_comment:
35+
if: success()
36+
needs: manual_prepare
37+
runs-on: ubuntu-latest
38+
steps:
39+
- uses: actions/github@master
40+
env:
41+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42+
with:
43+
args: comment "@${{ github.actor }} `shipjs prepare` done"
44+
45+
create_fail_comment:
46+
if: cancelled() || failure()
47+
needs: manual_prepare
48+
runs-on: ubuntu-latest
49+
steps:
50+
- uses: actions/github@master
51+
env:
52+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
with:
54+
args: comment "@${{ github.actor }} `shipjs prepare` fail"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Ship js Schedule Prepare
2+
on:
3+
schedule:
4+
# * is a special character in YAML so you have to quote this string
5+
- cron: '0 3 * * 2'
6+
jobs:
7+
schedule_prepare:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
with:
12+
fetch-depth: 0
13+
ref: master
14+
- uses: actions/setup-node@v1
15+
with:
16+
node-version: '12'
17+
- run: |
18+
if [ -f "yarn.lock" ]; then
19+
yarn install
20+
else
21+
npm install
22+
fi
23+
- run: |
24+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
25+
git config --global user.name "github-actions[bot]"
26+
- run: npm run release -- --yes --no-browse
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
SLACK_INCOMING_HOOK: ${{ secrets.SLACK_INCOMING_HOOK }}

.github/workflows/shipjs-trigger.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Ship js trigger
2+
on:
3+
pull_request:
4+
types:
5+
- closed
6+
jobs:
7+
build:
8+
name: Release
9+
runs-on: ubuntu-latest
10+
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'releases/v')
11+
steps:
12+
- uses: actions/checkout@v2
13+
with:
14+
fetch-depth: 0
15+
ref: master
16+
- uses: actions/setup-node@v1
17+
with:
18+
registry-url: 'https://registry.npmjs.org'
19+
node-version: '12'
20+
- run: |
21+
if [ -f "yarn.lock" ]; then
22+
yarn install
23+
else
24+
npm install
25+
fi
26+
- run: npx shipjs trigger
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
30+
SLACK_INCOMING_HOOK: ${{ secrets.SLACK_INCOMING_HOOK }}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
22
.presite
3+
dist

README.md

+23-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22

33
[![NPM version](https://img.shields.io/npm/v/presite.svg?style=flat)](https://npmjs.com/package/presite) [![NPM downloads](https://img.shields.io/npm/dm/presite.svg?style=flat)](https://npmjs.com/package/presite) [![CircleCI](https://circleci.com/gh/egoist/presite/tree/master.svg?style=shield)](https://circleci.com/gh/egoist/presite/tree/master) [![donate](https://img.shields.io/badge/$-donate-ff69b4.svg?maxAge=2592000&style=flat)](https://github.com/egoist/donate)
44

5-
## Why (not) prerender?
5+
## Why Presite?
66

7-
- It works for every single-page website
8-
- It requires no modification on your app code
9-
- But it does **not** suit a large website which depends heavily on async data - SSR would be preferred for that.
7+
Presite is an alternative to static site generators like Gatsby, Next.js and Nuxt.js etc, the difference is that it uses [Puppeteer](https://pptr.dev) to prerender websites instead of relying on server-side rendering.
108

119
## Install
1210

@@ -68,14 +66,22 @@ Then the generated website can be found at `.presite` folder.
6866
</details>
6967
<br>
7068

71-
By default it only prerenders path: `/`, you can configure `routes` option for more, see below:
69+
That's it, Presite prerender all pages of your website without any configuration!
70+
71+
Run `presite --help` for all CLI flags.
7272

7373
## Configure in presite.config.js
7474

75+
Many CLI flags can be stored in a configuration file, that's totaly optional but if you need one, read on.
76+
7577
Note: You can also configuration it in `presite.config.json` or the `presite` key in `package.json`.
7678

7779
#### Set routes that needs prerender
7880

81+
**Note that in most cases you won't need this option, Presite automatically find all same-site `<a>` elements on the pages and prerender all of them.**
82+
83+
If some of your pages are not referenced by other pages, you can manually specify them here:
84+
7985
```js
8086
module.exports = {
8187
routes: ['/', '/about']
@@ -121,8 +127,20 @@ Then you can call `window.snapshot` in your app when its contents are ready:
121127
window.snapshot && window.snapshot()
122128
```
123129

130+
To use a custom global variable name, set it to a string instead:
131+
132+
```js
133+
module.exports = {
134+
manually: `__my_snapshot__`
135+
}
136+
```
137+
138+
Now you should call `window.__my_snapshot__()` instead.
139+
124140
### Source directory
125141

142+
This is the same as using CLI `presite ./path/to/your/spa`:
143+
126144
```js
127145
module.exports = {
128146
baseDir: './path/to/your/spa'

bin/cli.js

-127
This file was deleted.

circle.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
steps:
1212
- checkout
1313
- restore_cache:
14-
key: dependency-cache-{{ checksum "package-lock.json" }}
14+
key: dependency-cache-{{ checksum "yarn.lock" }}
1515
- run:
1616
name: install dependences
17-
command: npm i
17+
command: yarn
1818
- save_cache:
19-
key: dependency-cache-{{ checksum "package-lock.json" }}
19+
key: dependency-cache-{{ checksum "yarn.lock" }}
2020
paths:
2121
- ./node_modules
2222
- run:
2323
name: test
24-
command: npm test
24+
command: yarn test

example/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title>SPA</title>
55
</head>
66
<body>
7-
<div id= "app"></div>
7+
<div id="app"></div>
88

99
<script src="/script.js"></script>
1010
</body>

example/script.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1-
document.getElementById('app').innerHTML = 'text'
1+
if (location.pathname === '/') {
2+
document.getElementById('app').innerHTML = `
3+
<h1>home</h1>
4+
5+
<a href="/other">other page</a>
6+
`
7+
} else {
8+
document.getElementById('app').innerHTML = 'other page'
9+
}

lib/Crawler.js

-43
This file was deleted.

0 commit comments

Comments
 (0)