JSONFeed VS eleventy-base-blog

Compare JSONFeed vs eleventy-base-blog and see what are their differences.

JSONFeed

Swift parser for JSON Feed — a new format similar to RSS and Atom but in JSON. (by totocaster)

eleventy-base-blog

A starter repository for a blog web site using the Eleventy static site generator. (by 11ty)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
JSONFeed eleventy-base-blog
7 28
31 1,152
- 1.9%
0.0 6.7
almost 7 years ago 9 days ago
Swift Nunjucks
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

JSONFeed

Posts with mentions or reviews of JSONFeed. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-20.
  • Make your web feed easy to find, autodiscoverable even
    1 project | dev.to | 4 Feb 2024
    If you have a web feed, be it RSS or Atom or JSON Feed, help others discover it!
  • How to Parse RSS Feed in Javascript
    2 projects | dev.to | 20 Mar 2023
    Imagine you have an RSS feed similar to this. The objective is to obtain that RSS feed, analyze the data it contains, and take action with it. RSS is an XML format, whereas JSON is arguably easier to work with than XML. While many APIs provide JSON results, RSS is less likely to receive them, despite their existence.
  • Is Astro ready for your blog?
    20 projects | dev.to | 24 Apr 2022
    At least for now, Astro clearly falls short in this category. Its built-in ability to provide RSS feeds is rather limited, and it doesn’t yet enable JSON feeds at all.5 In the meantime, some users, including Yours Truly, have gotten around this by using the third-party feed package, which supports RSS and JSON feeds.6
  • reader 2.0 released – a Python feed reader library
    3 projects | /r/Python | 19 Jul 2021
    want to also support JSON Feed?
  • Natural language search for blog posts using TensorflowJS
    5 projects | dev.to | 22 Apr 2021
    -------- # Metadata comes from _data/metadata.json permalink: "{{ metadata.jsonfeed.path | url }}" eleventyExcludeFromCollections: true -------- { "version": "https://jsonfeed.org/version/1", "title": "{{ metadata.title }}", "home_page_url": "{{ metadata.url }}", "feed_url": "{{ metadata.jsonfeed.url }}", "description": "{{ metadata.description }}", "author": { "name": "{{ metadata.author.name }}", "url": "{{ metadata.author.url }}" }, "items": [ {%- for post in collections.posts | reverse %} {%- set absolutePostUrl %}{{ post.url | url | absoluteUrl(metadata.url) }}{% endset -%} { "id": "{{ absolutePostUrl }}", "url": "{{ absolutePostUrl }}", "title": "{{ post.data.title }}", "tags": [ {%- for tag in helpers.removeCollectionTags(post.data.tags) -%} "{{tag}}" {%- if not loop.last %}, {%- endif %} {%- endfor %}], "summary": "{{ post.data.description }}", "content_html": {% if post.templateContent %}{{ post.templateContent | dump | safe }}{% else %}""{% endif %}, "date_published": "{{ post.date | rssDate }}" } {%- if not loop.last -%} , {%- endif -%} {%- endfor %} ] }
  • Two undocumented Intel x86 instructions discovered that can be used to modify microcode
    4 projects | /r/programming | 22 Mar 2021
    Your wish is my command.
  • Kill the Newsletter Convert Newsletters into Atom Feeds
    2 projects | news.ycombinator.com | 17 Feb 2021

eleventy-base-blog

Posts with mentions or reviews of eleventy-base-blog. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-01.
  • From Jason: my custom digital garden in 11ty
    4 projects | /r/DigitalGardens | 1 Nov 2023
    11ty is a lightweight static site generator. I chopped up my HTML and used the 11ty starter template called eleventy-base-blog as the structural foundation for the site.
  • It's 2023. How are you developing simple static websites?
    5 projects | /r/webdev | 30 Jan 2023
    Sure! It's on github at https://github.com/nosecreek/dustin-lammiman - I started with https://github.com/11ty/eleventy-base-blog for the basic templating logic.
  • 11 Top Eleventy Blog Themes (Starters) in 2023
    12 projects | dev.to | 9 Jan 2023
    Eleventy Base Blog demo site Source
  • Stop delaying. Share knowledge on a blog built with Eleventy.
    7 projects | dev.to | 19 Jul 2022
    To generate a static blog, we will be using Eleventy. Using the blog example from Eleventy as a base for our blog. Clone the repository:
  • Can you "call" another HTML file within an HTML file?
    4 projects | /r/webdev | 5 May 2022
    I would do this with Eleventy which is a powerful static site generator with support for html partials (partial is what I call your toolbar here). You would use the template language nunjucks which Eleventy comes with support for, or you can choose plain html too if you don't want the Nunjucks capabilities for logic like if/else, for loops, javascript injection of dynamic values in your html at site generation time, etc. This repo shows most of the techniques you could need and use: https://github.com/11ty/eleventy-base-blog
  • Getting Started with 11ty
    5 projects | dev.to | 1 May 2022
    For the second site I made using 11ty, I used this repo which is a more advanced 11ty template that can be customized. After following the instructions in the README.md file and edited all the markdown I came up with this:
  • Working with 11ty/eleventy to make Blogs
    4 projects | dev.to | 27 Apr 2022
    Pre-established Eleventy Blog Template Go to eleventy base blog to clone the repository to your local file/folder.
  • Creating a Blog with 11ty and HAX11ty
    6 projects | dev.to | 21 Apr 2022
    The next example we'll look at goes more into depth of 11ty. We are creating this site from this template.
  • Getting Started with Vercel
    5 projects | dev.to | 14 Mar 2022
  • Intro to 11ty
    3 projects | dev.to | 13 Mar 2022
    Say you want a more professonal looking site without having to do a lot of extra work, you’re in luck! 11ty has a community that has created templates that are available at this site. For this example, we will use the eleventy-base-blog, make sure to go to this repo and select the USE THIS TEMPLATE button to make a copy of the project in your namespace.

What are some alternatives?

When comparing JSONFeed and eleventy-base-blog you can also consider the following projects:

FeedKit - An RSS, Atom and JSON Feed parser written in Swift

eleventy 🕚⚡️ - A simpler site generator. Transforms a directory of templates (of varying types) into HTML.

Erik - Erik is an headless browser based on WebKit. An headless browser allow to run functional tests, to access and manipulate webpages using javascript.

eleventy-soft-ui-design - Eleventy (11ty) - Soft UI Design | AppSeed

SwiftyConfiguration - Modern Swift API for Plist.

eleventy-chirpy-blog-template - Blog template for 11ty based on Chirpy UX

SwiftCssParser - A Powerful , Extensible CSS Parser written in pure Swift.

neat-starter - Starter Template for Netlify CMS, Eleventy, Alpine JS & Tailwind CSS

CoreXLSX - Excel spreadsheet (XLSX) format parser written in pure Swift

assemblylift - The easiest way to build & deploy cloud native microservices! Written in Rust, powered by WebAssembly 🚀

AcknowledgementsPlist - AcknowledgementsPlist manages the licenses of libraries that depend on your iOS app.

eleventy-template-blog