orator 5.0.0 → 5.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +58 -81
- package/docs/.nojekyll +0 -0
- package/docs/README.md +142 -0
- package/docs/_sidebar.md +21 -0
- package/docs/architecture.md +92 -0
- package/docs/configuration.md +94 -0
- package/docs/cover.md +11 -0
- package/docs/getting-started.md +133 -0
- package/docs/http-proxy.md +45 -0
- package/docs/index.html +51 -0
- package/docs/ipc-server.md +123 -0
- package/docs/lifecycle-hooks.md +95 -0
- package/docs/restify-server.md +82 -0
- package/docs/service-servers.md +87 -0
- package/docs/static-files.md +75 -0
- package/package.json +7 -7
- package/source/Orator.js +46 -3
- package/test/Orator_complex_routes_tests.js +949 -0
- package/test/Orator_static_serving_tests.js +1322 -0
- package/test/static_content/about.html +1 -0
- package/test/static_content/data.json +1 -0
- package/test/static_content/index.html +1 -0
- package/test/static_content/style.css +1 -0
- package/test/static_content/subsite/index.html +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<html><head><title>About</title></head><body>About page content</body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"TestKey":"TestValue","Numbers":[1,2,3]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<html><head><title>Test Index</title></head><body>Welcome to the test server</body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
body { font-family: sans-serif; color: #333; }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<html><head><title>Subsite</title></head><body>Subsite index page</body></html>
|