coco icon indicating copy to clipboard operation
coco copied to clipboard

running outside the browser in a cli

Open ghost opened this issue 6 years ago • 1 comments

Really cool approach here.

wondering if the abstraction allows running this on a server ?

Then i can use the same code for front end as for backend stuff like:

  1. Making reports (html to PDF)
  2. Making emails. THink mail merge.
  3. Maybe even pre rendering web pages.

ghost avatar Apr 22 '19 21:04 ghost

This serves 2 purposes:

  1. Efficient DOM manipulation.
  2. Elegantly design HTML components using Go.

Working outside the browser wouldn’t need efficient DOM manipulation. So you’d just be getting the abstraction around Go’s template/html package. That could work for sure.

mrmiguu avatar Apr 24 '19 18:04 mrmiguu