Question tangential to Gatsby for those of you who use such static site builders as blogs: are there any good tools for writing/composing posts or are you all doing it by hand? I have set up the same blog maybe 3 times and I always stop posting because I need to be in my coding environment to do so (and if I'm there, I might as well be working on code). I'd really like to find something that I could use to make a pos…
Full disclosure: I‘m a Developer Evangelist for Contentful A “Headless CMS” is one way to achieve what you’re looking to do. Contentful is one, there are others. Gatsby’s has source plugins for all popular ones. They have a nice getting started guide for Gatsby + Contentful: https://www.gatsbyjs.org/docs/sourcing-from-contentful/
Gatsby raises $15M Series A for its modern web development platform
201–210 of 213 posts
Re: Gatsby raises $15M Series A for its modern web development platform
#202Big fan of static site generators and the whole JAMStack idea in general - I use Jekyll extensively - but after building a site with Gatsby, I found it too over-engineered. React is great, and definitely has its place, but to set up React, GraphQL and all the surrounding tooling just to assemble some text files into a template seems like complexity for the sake of it. For me, the fun of static sites - after years of…
Gatsby was great until Next came along and took its crown
Re: Gatsby raises $15M Series A for its modern web development platform
#203Re: Gatsby raises $15M Series A for its modern web development platform
#204In a dozen of hours I wrote Sitio[1]. Sitio generates static pages with React templates and if wanted they also become alive React components at the client. It has a simple imperative API, no GraphQL, no Webpack, any kind of datasource can be easily plugged (in fact I did plug many). It turns out Gatsby also exposes an imperative API that runs behind its fancy declarative API, and it's very similar to mine. However,…
What is the core team wasting their time on?
Re: Gatsby raises $15M Series A for its modern web development platform
#205Question tangential to Gatsby for those of you who use such static site builders as blogs: are there any good tools for writing/composing posts or are you all doing it by hand? I have set up the same blog maybe 3 times and I always stop posting because I need to be in my coding environment to do so (and if I'm there, I might as well be working on code). I'd really like to find something that I could use to make a pos…
> I have set up the same blog maybe 3 times and I always stop posting because I need to be in my coding environment to do so I had a similar problem and solved it with Forestry[0] and Netlify. Forestry has a nice web interface for writing posts; saving causes the changes to be committed to a GitHub repo. Netlify[1] watches the repo and rebuilds/redeploys the blog. It sounds a bit complicated, but I've run this setup…
Re: Gatsby raises $15M Series A for its modern web development platform
#206Question tangential to Gatsby for those of you who use such static site builders as blogs: are there any good tools for writing/composing posts or are you all doing it by hand? I have set up the same blog maybe 3 times and I always stop posting because I need to be in my coding environment to do so (and if I'm there, I might as well be working on code). I'd really like to find something that I could use to make a pos…
I wrote a ms word transformer for GatsbyJS. I like it because it lets me add images and stuff and generates the content without having to muck with urls etc. https://github.com/abhiyerra/gatsby-transformer-ms-word
Re: Gatsby raises $15M Series A for its modern web development platform
#207Re: Gatsby raises $15M Series A for its modern web development platform
#208Earlier quoted context omitted.
Doesn't generate static pages.
Sarcasm? If not there is nothing stopping you from generating static files using build time queries.
Re: Gatsby raises $15M Series A for its modern web development platform
#209In a dozen of hours I wrote Sitio[1]. Sitio generates static pages with React templates and if wanted they also become alive React components at the client. It has a simple imperative API, no GraphQL, no Webpack, any kind of datasource can be easily plugged (in fact I did plug many). It turns out Gatsby also exposes an imperative API that runs behind its fancy declarative API, and it's very similar to mine. However,…
No webpack is a big win. Thinking Gatsby is this fun & easy thing and then realizing you're going all-in on the current npm/JS insanity is not a good feature.
https://camo.githubusercontent.com/fdcb107fde40edb15afb7e80f...
Re: Gatsby raises $15M Series A for its modern web development platform
#210I don't really like Gatsby's product, but I've got to admit that their business strategy makes a lot of sense. It's a pretty good three-step approach: 1. Convince the WordPress/enterprise crowd to switch over, both by touting the genuine benefits of static sites (security, scalability, TTFB performance, etc.) and by riding the Cool Kid Front-End Stack hype train. 2. Lock them in with an overly-complicated framework a…
It should be pretty easy to auto-generate static sites from wordpress. Shifter and HardyPress already do so. That gets you all the advantages of static sites, combined with all the advantages of WordPress(ecosystem, tools, affordable labor, easy to use by clients). Their only major limitation is that they generate/"compile" the whole site, and this takes time. But that seems solvable by caching(in most cases) and by…