site-builder
v0.1.1
Published
Works but experimental at the the moment. Meant to be a fast but extremely flexible way to create a site.
Downloads
7
Readme
Site-builder
Works but experimental at the the moment. Meant to be a fast but extremely flexible way to create a site.
This allows you to build a static site using mongo.
To use create a new project and then
npm install --save site-builder
in index.js put something like
var sb = require('site-builder'),
myProjectDb = 'something';
sb
.start(myProjectDb)
.catch(function(error) {
console.log('error:', error);
console.log(error.stack);
process.exit(1);
});
Now you can make a site in a few steps:
- Makes some modules using the url pattern:
/admin/module/[module name]
- Create pages from these modules:
[route]/edit
- View your site:
[route]
Important urls
- create a module
- http://localhost:4321/admin/module/[name of module you want to create]
- create a page (you need at least one module)
- http://localhost:4321/[name of page you want]/edit
- view a page
- http://localhost:4321/[name of page you want]
- list all modules and pages
- http://localhost:4321/admin/