You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pagePark/README.md

71 lines
3.2 KiB
Markdown

10 years ago
PagePark
========
10 years ago
10 years ago
I wrote this simple Node.js folder-based HTTP server that serves simple static and dynamic pages for domains I've bought but not yet used.
It's also designed to be simple code you can learn from, or form to be whatever you like. But it's 90 percent of what all web servers do, so if you learn how to run Page Park, you're learning how to run a web server.
10 years ago
This is the second of three early 2015 "server snacks" by Dave Winer.
10 years ago
#### How it works
10 years ago
10 years ago
Create a folder to host your website.
10 years ago
10 years ago
Copy pagepark.js into that folder, and run it: node pagepark.js
It will automatically create a prefs folder and a domains folder.
Add your web content under domains. Each folder's name is the name of a domain. The contents within the folder are what we serve.
Serves all major media types including audio and video. Files whose names end with .md are passed through the built-in Markdown processor. Files ending with .js are interpreted as scripts. The text they return is what we serve.
The prefs folder contains a file of settings you can change, prefs.json. These include the port that the server runs on and the name of the index file (see below).
stats.json contains information generated by the server including the number of times the server has started, how many hits it's received (all time and today), and hits by domain.
mdTemplate.txt is the template we use to serve Markdown text. You can edit this file to provide a common template for all your Markdown documents.
If a request comes in for a folder, we scan the folder for a file whose name begins with *index* and serve the first one we find. So the index file can be HTML, Markdown or a script, or any other type PagePark can serve.
10 years ago
10 years ago
If you want to run PagePark from a folder different from the one that contains the app, set the *pageparkFolderPath* environment variable to point to that folder.
10 years ago
10 years ago
There are three special endpoints on all domains: /version, /now and /status that return the version of PagePark that's running, the time on the server and the stats and prefs.
#### Screen shot
Here's a <a href="http://scripting.com/2015/01/04/pageParkFolderScreenShot.png">screen shot</a> of my PagePark server folder.
#### Example pages
10 years ago
10 years ago
http://noderunner.org/ -- simple home page
10 years ago
http://lucky.wtf/ -- images
10 years ago
http://lucky.wtf/test.md -- markdown page
10 years ago
http://lucky.wtf/badass/ -- index file in a sub-directory
http://lucky.wtf/badass/butt.js -- a page implemented in a script
10 years ago
http://pagepark.io/ -- the home page for this product, served by the product
10 years ago
http://karass.co/nosuchfile.html -- file not found
http://pagepark.io/status -- information about the server
http://pagepark.io/version -- the version of PagePark that's running on the server
http://pagepark.io/now -- the time on the server
#### JavaScript sample code
I've iterated over the code to try to make it good sample code for JavaScript projects.
I wanted to make code that could be used for people who are just getting started with Node, to help make the process easier.
There will always be more work to do here. ;-)
10 years ago
10 years ago
#### Questions, comments?
10 years ago
10 years ago
Please post a note on the <a href="https://groups.google.com/forum/#!forum/server-snacks">Server Snacks</a> mail list.