@iwazaru/walden v0.9.0
Walden
Walden is a tool to build a serverless online bookstore with a search engine from a catalog file.
⚠ Walden is still in early development and it would be unwise to use it in production at that stage. Expect breaking changes, strange bugs, broken tests and missing documentation until 1.0 is released (hopefully in september 2020).
Install
Requirements:
- Node v12.18+
- Yarn
- Create an empty directory for your project
- Initialize yarn:
yarn init - Add Walden:
yarn add --exact @iwazaru/walden - Add both
startandbuildscripts to your package.json:
{
"scripts": {
"start": "walden start",
"build": "walden build"
}
}Usage
For your Walden site to be built successfully, your project directory will require at least three files:
- a
site.yamlfile specifying your site's info and configuration (see Site config file specification below) - a
catalog.yamlfile describing your books catalog (see Catalog file specification below). - a
styles.cssstylesheet to customize your site's appearance (see Stylesheet file specification below).
Optionnaly, you can add cover images in a covers folder in your project's
directory. Image file names must match the following pattern: {ean}.jpg (e.g.
9781234567890.jpg), and each ean in an image file name must match the ean of a
product described in the catalog.
Site config file specification
Customize your site's configuration by adding a site.yaml file in your
project's directory.
title: Les Éditions Paronymie # site titleCatalog file specification
Customize your products catalog by adding a catalog.yaml file in your
project's directory.
products:
- ean: 9781234567890
title: Chaussons d'ours
author: Laetitia Mani
- ean: 9781234567811
title: Sous-sol
author: Matt YassenarStylesheet file specification
Customize your site's appearance by adding a styles.css file in your project's
directory.
.WaldenSite {
/* This is a global wrapper for all your site. Here you can set page width,
margins, etc. */
}
.Product {
/* How a product is displayed */
}
.Product .Product-title {
/* How a product's title is displayed */
}
.Product .Product-cover-image {
/* How a product cover image is displayed */
}
.ProductList {
/* How a list of products is displayed */
}
.ProductList .Product {
/* How a product is displayed when in a list of products */
}
.HomePage .ProductList .Product {
/* How a product appears when in a list on home page */
}
.ProductPage .Product {
/* How a product is displayed when on a single product page */
}
.Error404Page .Error404Page-title {
/* How a title appears on a 404 error page */
}
.Error404Page .Error404Page-reason {
/* How the reasons appears if provided on a 404 error page */
}
.WaldenSite-powered-by {
/* The "Powered by Walden" text in the footer can be hidden (please don't!)
or made more discreet here */
}Once you've created these files, you can:
Build your Walden site for production
$ yarn buildThis will build your website for production in a build folder, ready for
deployment. You can serve this folder using any web server or static website
host.
Start Walden in development mode:
$ yarn startThis will spin a local webserver for development on. Open http://localhost:1854/ to view it in your browser. The page will reload automatically if you edit files in your project's directory.
Tests
Lint code inside this repository with:
$ yarn lintRun tests inside this repository with:
$ yarn testDevelopment
Walden is made of two main parts:
template/src: a template React site that is merged with user's customization files to build the final Walden sitebuild/src: a node tool that builds the final Walden site using the React template and user's customization file
Both are written in Typescript and needs to be transpiled before it can be used.
$ yarn buildFiles are linted, tested and transpiled before the package is published to npm.
During development, template files can be watched and transpiled as they are changed:
$ yarn dev