static_shock 0.0.1-dev.2 static_shock: ^0.0.1-dev.2 copied to clipboard
A static site generator for Dart.
Static Shock #
A static site generator for Dart.
How to use from the command line #
To use Static Shock as a command-line tool, use the static_shock_cli
package.
How to use programmatically #
To use Static Shock programmatically, create a new StaticShock
instance, and then generate()
a static website.
final staticShock = StaticShock(
// configuration here
);
// Generate a static website.
await staticShock.generate();