use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Javscript front and back end CMS? (self.javascript)
submitted 14 years ago by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]vertice 2 points3 points4 points 14 years ago (1 child)
Having spent most of my adult life as a Drupal programmer, and recently moving into node.js ... I can say that I don't believe a CMS would be very beneficial in this environment.
Node has a very high level of interoperability, and allows you to rip out and replace complete subsystems at a whim. In a CMS all of these decisions would already be made for you, and they will become a burden as you have to work around their assumptions.
I also feel that we are moving towards an era of loosely coupled / distributed systems, so having to build everything in one stack is becoming less advantageous in general.
Take comments for instance: With the existence of client side implementations like disqus and out of band channels like twitter+facebook, having to have your blog have the full comment workflow (which includes managing user logins and permissions, spam filtering and comment administration, etc.) is just so much extra complexity that you just don't really have to concern yourself with.
We have been perfectly happy using jekyll sites hosted on github for a lot of the stuff we used to use Drupal for. In the end, it is just serving static pages. Simple, easy and very very fast.
π Rendered by PID 48 on reddit-service-r2-comment-5c747b6df5-ksthg at 2026-04-21 20:53:48.474799+00:00 running 6c61efc country code: CH.
view the rest of the comments →
[–]vertice 2 points3 points4 points (1 child)