I wrote this simple Node.js folder-based HTTP server that serves static and dynamic pages for domains I've bought but not yet used.
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.
 
 
Dave Winer 2acfb2430d v0.71 8 years ago
docs v0.71 8 years ago
lib v0.70 8 years ago
prefs v0.71 8 years ago
LICENSE Initial commit 9 years ago
README.md v0.71 8 years ago
package.json v0.61 9 years ago
pagepark.js v0.70 8 years ago

README.md

PagePark

I wrote this simple HTTP server to park domains I've bought but not yet used.

It's written in JavaScript and runs in Node.js.

Each domain is in its own folder. The content for that domain is in the folder. I went a little wild with content types, it can serve Markdown docs, or run JS code. And of course HTML, text files, images, movies, etc.

Yet it's still very simple. Which is the point. ;-)

It's 90 percent of what all web servers do, so if you learn how to run PagePark, you're learning how to run a web server. A real one you can use to host your sites. And it's easy to hack the code if you want to.

How to

  1. Create a folder to host your website.

  2. Copy all the files from the downloaded folder into that folder.

  3. npm install

  4. node pagepark.js

Screen shot

Here's a screen shot of my PagePark server folder.

How it works

  1. PagePark will automatically create a prefs sub-folder and a domains sub-folder.

  2. 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. Screen shot.

  3. 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. Here's an example of a script that I have running on one of my servers.

  4. 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).

  5. 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.

  6. 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.

  7. 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.

  8. 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.

  9. 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.

Port 1339

The first time you run PagePark it will open on port 1339. You can change this by editing prefs.json in the prefs folder.

This means if you want to access a page on your site, the URL will be of the form:

http://myserver.com:1339/somepage.html

The normal port for HTTP is 80. That would have been the natural default, however a lot of Unix servers require the app to be running in supervisor mode in order for it to open on port 80. You can do this by launching PagePark this way:

sudo node pagepark.js

I made the default 1339 because I wanted it to work "out of the box" for first-time users.

Example pages

http://noderunner.org/ -- simple home page

http://lucky.wtf/ -- images

http://lucky.wtf/test.md -- markdown page

http://lucky.wtf/badass/ -- index file in a sub-directory

http://lucky.wtf/badass/butt.js -- a page implemented in a script

http://pagepark.io/ -- the home page for this product, served by the product

http://karass.co/nosuchfile.html -- file not found

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. ;-)

Updates

v0.71 7/31/16 by DW

The repository now includes mdTemplate.txt in the prefs folder. Previously it would download this file from one of my sites the first time it was used. This is a more modern way to distribute it.

v0.70 12/8/15 by DW

It used to be that a file had to exist in order for you to redirect from it in config.redirects. Now it doesn't have to exist.

v0.68 8/31/15 by DW

Small change in error handling when we delegate a request. The previous method would cause PagePark to crash if the app we're trying to delegate to isn't running. Thanks to Dan MacTough for the help fixing this. ;-)

v0.67 7/30/15 by DW

New redirect feature for individual pages.

In config.json for the domain containing the file you want to redirect, create a struct called redirects. The name of each element is the path to a file in the folder, and the value of each is the URL we will redirect to. On each request for that domain, we look in the redirects table to see if the request should be redirected.

Here's an example of the config.json for smallpicture.com. It redirects from an old version of the outliner howto to the newer version.

v0.66 7/19/15 by DW

In prefs.json a new value, legalPathChars, defaults to the empty string. In this string you can specify characters that are legal in paths on your server. We are very conservative in what we will allow in paths, but if you need to use one of the characters that we consider illegal, add it to this string.

For example, I am redirecting urls from discuss.userland.com to a static archive. It was a Manila site, so it uses a in the URLs, a character which PagePark by default considers illegal. Here's an <a href="http://discuss.userland.com/msgReader$18647">example</a>. I set legalPathChars to "" in prefs.json, and it lets the character through, and it is redirected by the very clever little script that handles redirection for that domain.

v0.65 7/16/15 by DW

In prefs.json a new value, error404File, defaults to prefs/error.html

When there's an error, we read that file and send it back as the text of the 404 response.

The default value is more or less exactly the same text earlier versions of PagePark returned. It's actually in HTML, that's the difference. As opposed to being plain text.

v0.64 7/7/15 by DW

I wanted to do a site redirect that was more than just a domain name change.

If a request came in for: http://archive.scripting.com/2007/12

I wanted it to redirect to: http://scripting.com/2007/12.html

That was accomplished with a new element in config.json: jsSiteRedirect. Its value is a JavaScript expression. You can access the path in the variable parsedUrl.pathname.

This is what config.json in the folder archive.scripting.com looks like.

{"jsSiteRedirect": "'http://scripting.com' + parsedUrl.pathname + '.html'"}

v0.62 6/25/15 by DW

Code cleanup and factoring in opml.js.

v0.61 6/24/15 by DW

Files with the extension .opml are now rendered as outlines.

There's a template for outlines, it uses the new outlineBrowser toolkit. Here's an example of an OPML file rendered through the new template.

If you want the raw OPML text from the server, you can do it one of two ways:

  1. Add ?format=opml at the end of the url. Example.

  2. If you're making the request in a program, you can add an Accept header with the value: text/x-opml, following a convention established by the OPML Editor.

As with scripts and markdown files, you can turn the feature off in config.json.

v0.60 5/26/15 by DW

When delegating requests, pass redirects back to the client, don't follow them. This was necessary so that that OAuth dance with Twitter in nodeStorage would work.

There's a new structured listing of the source code of PagePark, linked to from the flat listing (above). This makes it easy to see how the code is organized. It gets pretty deeply nested! The outline view makes that manageable. I use the OPML Editor on a Mac to edit PagePark.

v0.59 5/23/15 by DW

You can now delegate requests to apps running on other ports on your server machine.

There's a new optional section of the prefs. json file where you specify these mappings. It's called domainMap. It's a set of name-values, where the name is the domain, and the value is the port the requests are mapped to.

Here's an example of a prefs.json that has a domainMap specified. It maps twitter.radio3.io to the process running on port 5342, twitter.happyfriends.camp to 5338, and any request on judgment.club to the process on port 5351.

The name matches the end of the HOST header for the request, so a request for judy.judgment.club will map, as will renee.judgment.club and judgment.club.

v0.57 5/11/15 by DW

PagePark has pre-defined pages, /now, /version and /status, whose values are returned by PagePark itself. It used to be that they took precedence, so if a site defines pages with those names, the internal ones would be served instead. Now we only serve them if the site didn't define it.

The urlSiteContents feature now transmits search params. It still will only forward GET calls. This needs to be updated in a future version.

PagePark now supports wildcards. Suppose you want to serve all the names from mydomain.org with a wildcard. Create a sub-folder of the domains folder with the name *.mydomain.org. If a request comes in for a sub-domain of mydomain.org that doesn't have its own folder, we'll route it through that folder. You can combine this feature with the urlSiteContents feature, or script-implemented pages.

We also set the X-Forwarded-Host and X-Forwarded-For headers on urlSiteContents requests.

v0.56 5/5/15 by DW

New prefs and config values that allow you to disable processing of scripts and Markdown files. By setting the values in prefs.json, you control all domains on the server. And by adding the values to config.json, in the folder the site is served from, you can turn them off selectively by site. I needed to turn off script processing for .js files served from River4, to make it possible to serve a full river from PagePark.

v0.55 4/26/15 by DW

With this release you can serve domains whose content is stored elsewhere on the web.

There's a new optional element of config.json, urlSiteContents. Its value is the URL of a directory on the web that stores the content of the domain.

As an experiment, I mapped the domain my.this.how to point to a folder in my public Dropbox folder. Here's how I did it.

  1. First I created a new sub-folder of my public Dropbox folder called pageParkDemo. I put one file in that folder, index.html.

  2. I used the web interface of my domain registrar to point my.this.how at the IP address of my PagePark server.

  3. On my PagePark server, I created a sub-folder of the domains folder called my.this.how.

  4. I created a config.json file in that folder, pointing to the pageParkDemo folder in my Dropbox folder.

To test the setup, I just went to my.this.how, where I saw "this is just a demo".

Just for fun I put a picture in that folder, to see if it works.

Obviously it can get a lot more elaborate, and you can store the content anywhere, not just in a Dropbox folder. The key is that the content be accessible over the web.

v0.54 2/18/15 by DW

A new feature for pages implemented as scripts. If the script returns the value undefined PagePark will not return a value to the HTTP client, it assumes that the script will do this.

To make it possible for a script page to return a value to the client, there's a new built-in function httpReturn. It takes two parameters, the value, a string, and the type, a MIME type. For example you might have a script that makes an HTTP request and returns a value based on the result to the caller.

Here's an example script that illustrates.

v0.51 1/18/15 by DW

Created utils.js in the lib folder, and require it in pagepark.js.

New feature: If there's a file called config.json in a domain folder, we read it on every request, and values in that file can change the behavior of the server. The first feature allows you to do a whole-site redirect. Useful if you want to have several names map to the same content. Here's an example of the config.json file that maps a domain to nodestorage.io.

v0.48 1/8/15 by DW

The default port the server boots up on is now 1339. Previously it was 80, which is the standard port for HTTP, but on many OSes this requires PagePark to be running in supervisor mode. I added docs above to explain this.

Changed package.json so that only request and marked were listed as dependencies. Apparently the others are included in Node without having to list them.

Instead of keeping our own MIME type table, we use the Node mime package, which is also included as a dependency in the package.json file.

v0.47 1/7/15 by DW

Added a package.json file to the repository.

Fixed first-time startup problem creating prefs.json and stats.json.

Also, we now make sure the domains folder exists at startup.

Fixed a problem in handling requests if you specified a different folder for PagePark to serve from.

Questions, comments?

Please post a note on the Server Snacks mail list.