Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Client-side JavaScript blog engine/script [closed]

Do you know any modern JavaScript blog engine or script which runs on client side? I am not talking about node.js, but rather a script which doesn't need more than static WWW server (i.e. no PHP).

It should:

  • fetch blog posts from some JS database (e.g. localStorage, external JSON backend)
  • render them using some HTML template
  • allow to link to specific post
  • possibly allow to edit posts and send them back to the database?

I know about JavascriptMVC, AngularJS, Backbone, Knockout, etc., but they are rather frameworks than complete apps. I'm searching for something similar to the old JSCMS.

Update: Searching through GitHub I have found some desirable projects: MiniLOL and Static Site CMS. Do you know any more?

like image 667
niutech Avatar asked Nov 12 '22 16:11

niutech


1 Answers

Sure you can do it but everyone would have to be on the same computer for the "blog engine" to work. It's almost equivalent to everyone using the same text document.

like image 153
VoronoiPotato Avatar answered Nov 15 '22 05:11

VoronoiPotato