All Projects โ†’ AbstractMachinesLab โ†’ hotstuff

AbstractMachinesLab / hotstuff

Licence: MIT license
๐Ÿ”ฅ Composable, incremental, turnkey document compiler

Programming Languages

rust
11053 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects
powershell
5483 projects
Makefile
30231 projects

Projects that are alternatives of or similar to hotstuff

Easyincrementalupdate
Androidๅทฎๅˆ†่กฅไธๅบ“๏ผŒ้€š่ฟ‡nativeๅฑ‚ๅˆๅนถAPK๏ผŒๅฎž็Žฐๅขž้‡ๆ›ดๆ–ฐๅ‡็บง๏ผŒ่ฎฉไฝ ๆ›ดๆ–ฐ็š„APKๆ›ดๅฐใ€‚
Stars: โœญ 233 (+1126.32%)
Mutual labels:  native, incremental
ionic3-whatsappclone
This is a template for WhatsApp for user with ionic framework. It's just a template with no backend for now. See Roadmap in Readme below
Stars: โœญ 24 (+26.32%)
Mutual labels:  native
Darklaf
Darklaf - A themeable swing Look and Feel based on Darcula-Laf
Stars: โœญ 249 (+1210.53%)
Mutual labels:  native
neft
Universal Platform
Stars: โœญ 34 (+78.95%)
Mutual labels:  native
tasit-apps
Native mobile Ethereum dapps for mainstream users
Stars: โœญ 35 (+84.21%)
Mutual labels:  native
blazor-dashboard
Blazor sample dashboard app with native components from Telerik
Stars: โœญ 20 (+5.26%)
Mutual labels:  native
Jasonelle
๐Ÿ›ธ ๐Ÿ˜๏ธ Jasonelle issues, releases and discussions repository.
Stars: โœญ 240 (+1163.16%)
Mutual labels:  native
ti.admob
Use the Google AdMob SDK on iOS and Android with Titanium
Stars: โœญ 51 (+168.42%)
Mutual labels:  native
universal
A counterpart to common package to be used with Angular Universal
Stars: โœญ 115 (+505.26%)
Mutual labels:  native
Android-WebView-in-Kotlin
Native Android WebView Example in Kotlin. Website to android app github open source template.
Stars: โœญ 87 (+357.89%)
Mutual labels:  native
Google-Docs-for-Mac
Native Google Docs app for Mac
Stars: โœญ 33 (+73.68%)
Mutual labels:  native
dynamico
Dynamico allows a remote (web-like) code push work-flow for continuous delivery of specific features native or web.
Stars: โœญ 96 (+405.26%)
Mutual labels:  native
fingerprintjs-pro-ios
Official iOS/tvOS agent & SDK for accurate device identification, created for the Fingerprint Pro identification API.
Stars: โœญ 35 (+84.21%)
Mutual labels:  native
go-uci
Native Go bindings for OpenWrt's UCI.
Stars: โœญ 69 (+263.16%)
Mutual labels:  native
android touch
Low latency high speed android multitouch event server
Stars: โœญ 73 (+284.21%)
Mutual labels:  native
Reason Graphql Fullstack
Fullstack Reason + GraphQL Todo List App
Stars: โœญ 246 (+1194.74%)
Mutual labels:  native
graphql-backend-template-dgraph
Dgraph GraphQL Editor template for backend using very fast dgraph golang database server under the hood
Stars: โœญ 45 (+136.84%)
Mutual labels:  native
aioch
aioch - is a library for accessing a ClickHouse database over native interface from the asyncio
Stars: โœญ 145 (+663.16%)
Mutual labels:  native
lwt-node-starter
A simple starter for lwt-node
Stars: โœญ 13 (-31.58%)
Mutual labels:  native
hearthstone-linux
Craft your own linux native Hearthstone client
Stars: โœญ 41 (+115.79%)
Mutual labels:  native

๐Ÿ”ฅ hotstuff

A composable, incremental, turnkey document compiler

Travis (.org)

Read the blog post: AM010 - On Tolerating Complexity

hotstuff is turnkey โ€” it makes almost no assumptions about how you structure or write your content. There's also no plugins whatsoever.

hotstuff is composable โ€” touch a few files in your existing folder structure and it'll just work. Near zero-cost, and your content is always fully portable.

hotstuff is incremental โ€”- it aggressively caches your project so you can use it on hundreds of thousands of files.

Just one command away:

  • Cargo: cargo install --git https://github.com/AbstractMachinesLab/hotstuff --branch main
  • Yarn: yarn global add @abstractmachines/hotstuff
  • NPM: npm install --global @abstractmachines/hotstuff

Getting Started

If you put a hotstuff-project file on the root of your project, hotstuff will look throughout your whole project for site files.

site files tell hotstuff that this particular folder should be compiled into a website.

So if you have your posts in the following structure:

my/website ฮป tree
.
โ”œโ”€โ”€ pages
โ”‚   โ”œโ”€โ”€ First-post.md
โ”‚   โ””โ”€โ”€ Some-other-post.md
โ””โ”€โ”€ sections
    โ”œโ”€โ”€ about.md
    โ”œโ”€โ”€ hire-me.md
    โ””โ”€โ”€ projects.md

You just need to touch a few files:

my/website ฮป touch hotstuff-project
my/website ฮป touch pages/site sections/site

And you can run hotstuff serve to compile the website using the same tree structure under a _public folder, and serve it with hot-reloading.

my/website ฮป hotstuff serve
11:19:09 INFO :: Building project...
11:19:09 INFO :: Built 9 artifacts in 6ms
11:19:09 INFO :: Done in 7ms
11:19:09 INFO :: Server listening on http://0.0.0.0:4000

Now your file structure looks like:

my/website  ฮป tree
.
โ”œโ”€โ”€ _public
โ”‚   โ”œโ”€โ”€ pages
โ”‚   โ”‚   โ”œโ”€โ”€ First-post.html
โ”‚   โ”‚   โ””โ”€โ”€ Some-other-post.html
โ”‚   โ””โ”€โ”€ sections
โ”‚       โ”œโ”€โ”€ about.html
โ”‚       โ”œโ”€โ”€ hire-me.html
โ”‚       โ””โ”€โ”€ projects.html
โ”œโ”€โ”€ hotstuff-project
โ”œโ”€โ”€ pages
โ”‚   โ”œโ”€โ”€ First-post.md
โ”‚   โ”œโ”€โ”€ Some-other-post.md
โ”‚   โ””โ”€โ”€ site
โ””โ”€โ”€ sections
    โ”œโ”€โ”€ about.md
    โ”œโ”€โ”€ hire-me.md
    โ”œโ”€โ”€ projects.md
    โ””โ”€โ”€ site

Note that the _public folder is ready for you to serve however you feel like. Upload to S3, Now, GCS, Github pages, or wherever really.

Installation

NPM

If you're already running npm or yarn, you can just run yarn global add @abstractmachines/hotstuff or npm install -g @abstractmachines/hotstuff to get the right binary in your computer.

If you're running against the Github package registry, our scoped name is @abstractmachineslab instead.

Source

You can install it locally via source if you have a running Rust toolchain with:

curl https://codeload.github.com/AbstractMachinesLab/hotstuff/tar.gz/main > hotstuff.tar.gz
tar xzf main.tar.gz
cd hotstuff
make install

Then hotstuff should be available globally.

Features

Incremental Builds

Running hotstuff build will plan a build of your entire site every time, but it will only execute the bits required to get you to your end state.

There is no in-memory build state, and instead build plan diffing is implemented on top of the artifacts that are produced.

You can always call hotstuff build --force to skip the diffing and redo al the work.

Local Server

You can run hotstuff serve to start up a static file server with incremental compilation and hot-reloading.

There's no in-memory build state, and the build diffs are recomputed in the background for you. So you get a re-build within a few milliseconds of changing a file, and the browser will only reload the assets that changed.

It doesn't get anymore turnkey than this.

Templating

You'll quickly notice that the bare compilation from Markdown to HTML doesn't quite fit all use-cases. To alleviate this hotstuff lets you specify in your site file a template file to be used for all the Markdown files within that specific site.

Say you wanted to wrap all of the pages from the example above in a common markup: add a <meta charset="utf-8"> to all of them. You'd write a template file:

<html>
  <head>
    <meta charset="utf-8">
  </head>
  <body>
    {| document |}
  </body>
</html>

And in your site file you'd point to it:

(template "path/to/template.html")

Voila! That's all it takes to get the templating up and running.

Assets

To copy assets (any supporting file to your site) you can use the (assets ...) rule:

(assets
  style.css
  logo.svg
  bg_music.midi)

And they will be automatically copied from their location, relative to the site file.

You can also use the shorthand . instead of listing your assets to have all the files in the folder copied over. This is not recursive.

Credits

hotstuff is inspired by prior art:

  • the cactus static site generator
  • the dune build system, with its composability
  • the bazel build system, with its aggressive incremental compilation techniques

If you'd like to support this project you can sponsor us on Github.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].