Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webiny/staticrender
An app that renders your javascript/reactjs app server side when a request comes from a bot or a crawler.
https://github.com/webiny/staticrender
nodejs phantomjs php seo server-side-rendering webiny
Last synced: 8 days ago
JSON representation
An app that renders your javascript/reactjs app server side when a request comes from a bot or a crawler.
- Host: GitHub
- URL: https://github.com/webiny/staticrender
- Owner: webiny
- License: mit
- Created: 2017-03-02T07:54:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-29T06:52:05.000Z (about 7 years ago)
- Last Synced: 2024-04-15T15:33:46.832Z (7 months ago)
- Topics: nodejs, phantomjs, php, seo, server-side-rendering, webiny
- Language: JavaScript
- Homepage:
- Size: 63.5 KB
- Stars: 2
- Watchers: 10
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Static render
Static render is an app that does server side render of your Webiny React app and produces a static HTML snapshot.The app only kicks in when a bot visits the site and it works only if the site is in `production` mode.
## Reason behind this app
We use Webiny, which is a React based platform, to build both websites as well as web applications. For web applications it doesn’t really matter, but for **websites**, it's important that they can be properly indexed by bots and other crawlers.Google claims that their bot can read and execute JavaScript, which is true, but only partially. There are some limitations, which are not documented and we are not certain what they are exactly. But we know that there are some because some of our pages were not indexed properly or not indexed at all, which is bad for us and our customers.
Another reason for building this app is that other search engines, like Bing, Yahoo, Baidu, DuckDuckGo and others, they don’t execute JS at all. And finally, sharing a JS page on Facebook or Twitter, just doesn’t work.
## Dependencies
This is a Webiny app, meaning you need to use Webiny platform as the foundation for your website to use this application. To learn more about Webiny, head over to [http://www.webiny.com/](http://www.webiny.com/)Additionally you need to have the following items:
* Node 7 or greater
* PhantomJs 2.1.1 or greater### PhantomJs 2.5.0
At the point of writing this file, Phantom 2.5.0-beta was released. From that version onwards PhantomJs supports ES6, so we jumped on the beta ship straight away.
Since we are transpiling our JS using webpack, version 2.1.1 is also enough to render the pages correctly.Installing the 2.5.0-beta requires a few steps and here is what you need to do if you are running Ubuntu (like our Vagrant machine):
1. Download the binary from this link:
[https://bitbucket.org/ariya/phantomjs/downloads/](https://bitbucket.org/ariya/phantomjs/downloads/)Extract the archive:
```
tar -zxvf {archive name here}
```Run the install scripts (and update the paths to match the version you downloaded):
```
sudo add-apt-repository ppa:ubuntu-toolchain-r/testsudo apt-get update
sudo apt-get install libstdc++6 libwebp-dev libhyphen-dev libicu-dev gcc-4.9 g++-4.9
sudo mv phantomjs-2.5.0-beta-ubuntu-trusty /usr/local/share/
sudo ln -sf /usr/local/share/phantomjs-2.5.0-beta-ubuntu-trusty/bin/phantomjs /usr/bin
sudo chmod +x /usr/local/share/phantomjs-2.5.0-beta-ubuntu-trusty/bin/phantomjs
phantomjs --version
```## Configuration
The app has few config parameters. Here is a sample config and the explanation below:```yaml
StaticRender:
Settings:
ResourceTimeout: 1000
CacheTtl: 86400
PathToPhantomJs: '/usr/bin/phantomjs'
PathToNode: '/home/vagrant/.nvm/versions/node/v7.7.1/bin/node'
````ResourceTimeout`
Defines how log to wait before taking the snapshot of the DOM.
If you see that some of your components are not loading, try increasing the number.
The number is in milliseconds.`CacheTtl`
Once a snapshot is created, it is cached and this number defines for how long. The number is in seconds.`PathToPhantomJs`
This is the path to PhantomJs executable. If you installed PhantomJs using the steps in the previous section, you can set the path to the value that’s in the sample config.`PathToNode`
This is path to your node executable. If you made couple of updates to your node installation, the app might run an older version of node, depending on how your paths are set. By forcing a specific path to the node app, you can make sure it executes the commands using the latest node version.## Features
The app also has a user interface. Using the interface via the Webiny administration you can access additional features. Those features are:
* List of all the cached URLs
* Option to delete a certain cache entry
* Force a refresh of a particular cache entry
* View the rendered HTML content of a certain cache entry
* `Fetch as bot` to see the output of the requested URL as if you were a bot## License and Contributions
Contributing > Feel free to send PRs.
License > [MIT](LICENSE)