LennahSSG VS Docusaurus

Compare LennahSSG vs Docusaurus and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
LennahSSG Docusaurus
11 282
0 52,968
- 1.3%
0.0 9.5
over 2 years ago 8 days ago
C++ TypeScript
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.

LennahSSG

Posts with mentions or reviews of LennahSSG. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-11-26.
  • Releasing LENNAH
    3 projects | dev.to | 26 Nov 2021
    This week we got the chance to learn how to package and release our SSGs. For my release I decided to use conan as my package manager and GitLab as my package repository. In order to make my package I had to do a few steps first, I needed to install conan and cmake so I could run the commands. I already had cmake installed from testing Andrew's SSG so that was nice. Then I had to make a new GitLab account and link it to my GitHub account so I could import my repo over to GitLab.
  • Checking out Docusaurus
    2 projects | dev.to | 29 Oct 2021
    Homepage prototype
  • Refactoring LENNAH SSG
    1 project | dev.to | 14 Oct 2021
    After I tested everything I was able to do an interactive rebase in Git to merge all my commits together. This was a really neat feature that allowed me to keep my actions/changes organized and it was super easy to do! If you want to take a look at my rebased commit you can find it here. While it looks like a lot was changed it was a lot more manageable because in reality it was a bunch of separate changes. This feature is great to make the commit history look a lot cleaner because I know I am someone who always tends to miss a few things here and there so the tiny commits tend to pile up. Now I don't have to feel as bad when I notice a small thing that needs changing, I can just rebase the commits!
  • Drafting My First Pull Request
    2 projects | dev.to | 10 Oct 2021
    This week, I focused on adding a new feature to my friends site generator, LENNAH SSG. Using a fork of his project with an issue branch, I was able to add support for config files using --config. I also created a draft pull request in order to better communicate our ideas to each other.
  • I'm mergin here
    2 projects | dev.to | 30 Sep 2021
    Last week when merging my partner's repo we encountered an issue where several files were in conflict. We opted to delete the conflicting files on his end to allow the merge, rather than going through line by line and seeing what was different and he kept backups so as to reintroduce any code that was cut if he so chose.
  • Parallel updates
    1 project | dev.to | 30 Sep 2021
    I decided the two features I wanted to add were things related to the markdown functionality of my SSG. I added support for inline code using the ` syntax and I also added support for the horizontal rule "---" syntax. Thanks to my classmate Gus, it was really easy to augment the existing code to add new features to the markdown support. All I had to do was add some if statements in the markdown handler section of the file reader to check for ` and --- then I just needed to add a new function for inline code generation. You can find the changes for the inline code implementation here and the horizontal rule implementation here.
  • Learning to make pull requests
    2 projects | dev.to | 24 Sep 2021
    When Gus made a pull request for my SSG, I found a few things I wanted him to change. First I wanted him to do the same thing as I did for his SSG; make the txt title/header functionality only work for txt files. Second, I noticed that he had if statements like this:
  • Collab bro??
    1 project | dev.to | 24 Sep 2021
    This week I worked on Joshua Li's SSG, LennahSSG again. I added support for markdown files, with the ability to distinguish and generate appropriate HTML tags for bold and italics.
  • Lab 1
    2 projects | dev.to | 17 Sep 2021
    The hardest part of testing/reviewing Joshua's code was finding anything to critique, it was that good. Like when a prof gives you code to work on, logically organized, concise and without mistakes. His code wouldn't compile using g++ originally, but after ignoring the warnings that came up it compiled fine. I think it was just a case of the compiler being finicky, it wasn't liking the multiple declarations of having prototypes earlier in the file but it ran fine after I ignored those. He also included an executable so it wouldn't have made much of a difference regardless.
  • Code review and testing with a classmate
    2 projects | dev.to | 16 Sep 2021
    It was also very nice to have someone else take a look at your code, I made a few silly mistakes that I would probably never have caught because it made sense in my head, such as my versioning being wrong. (Issue).

Docusaurus

Posts with mentions or reviews of Docusaurus. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-04.
  • Alternatives to Docusaurus for product documentation
    7 projects | dev.to | 4 Apr 2024
    Docusaurus is a popular open-source documentation tool primarily designed for product documentation and other technical documentation needs. It was first released in 2017 by Facebook Open Source (now Meta Open Source). Just recently, Docsaurus version 3.0 was released.
  • Docusaurus doesn't recognize brackets {} on the markdown files
    1 project | dev.to | 1 Apr 2024
    // @ts-check // `@type` JSDoc annotations allow editor autocompletion and type checking // (when paired with `@ts-check`). // There are various equivalent ways to declare your Docusaurus config. // See: https://docusaurus.io/docs/api/docusaurus-config import { themes as prismThemes } from "prism-react-renderer"; /** @type {import('@docusaurus/types').Config} */ const config = { title: "My Site", tagline: "Dinosaurs are cool", url: "https://your-docusaurus-test-site.com", baseUrl: "/", onBrokenLinks: "throw", onBrokenMarkdownLinks: "warn", favicon: "img/favicon.ico", organizationName: "facebook", // Usually your GitHub org/user name. projectName: "docusaurus", // Usually your repo name. presets: [ [ "docusaurus-preset-openapi", /** @type {import('docusaurus-preset-openapi').Options} */ ({ docs: { sidebarPath: require.resolve("./sidebars.js"), // Please change this to your repo. editUrl: "https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/", }, blog: { showReadingTime: true, // Please change this to your repo. editUrl: "https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/", }, theme: { customCss: require.resolve("./src/css/custom.css"), }, }), ], ], themeConfig: /** @type {import('docusaurus-preset-openapi').ThemeConfig} */ ({ navbar: { title: "My Site", logo: { alt: "My Site Logo", src: "img/logo.svg", }, items: [ { type: "doc", docId: "intro", position: "left", label: "Tutorial", }, { to: "/api", label: "API", position: "left" }, { to: "/blog", label: "Blog", position: "left" }, { href: "https://github.com/facebook/docusaurus", label: "GitHub", position: "right", }, ], }, footer: { style: "dark", links: [ { title: "Docs", items: [ { label: "Tutorial", to: "/docs/intro", }, ], }, { title: "Community", items: [ { label: "Stack Overflow", href: "https://stackoverflow.com/questions/tagged/docusaurus", }, { label: "Discord", href: "https://discordapp.com/invite/docusaurus", }, { label: "Twitter", href: "https://twitter.com/docusaurus", }, ], }, { title: "More", items: [ { label: "Blog", to: "/blog", }, { label: "GitHub", href: "https://github.com/facebook/docusaurus", }, ], }, ], copyright: `Copyright © ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`, }, prism: { theme: prismThemes.github, darkTheme: prismThemes.dracula, }, }), }; export default config;
  • Looking for open source documentation generator
    1 project | news.ycombinator.com | 28 Mar 2024
  • Show HN: A Python-based static site generator using Jinja templates
    4 projects | news.ycombinator.com | 27 Mar 2024
    Facebook's React/Markdown SSG docusaurus does those things: https://docusaurus.io/

    Though you may have to use a plugin for responsive images: https://docusaurus.io/docs/api/plugins/@docusaurus/plugin-id...

  • Craft Your GitHub Profile Page in 60 Seconds with Zero Code, Absolutely Free
    6 projects | dev.to | 11 Mar 2024
  • Top 5 Open-Source Documentation Development Platforms of 2024
    3 projects | dev.to | 13 Feb 2024
    Docusaurus is an open-source static site generator built on React and has emerged as a popular tool for developing and maintaining product documentation. Its ease of use, extensive features, and robust community support make it a compelling choice for many organizations.
  • No CMS? Writing Our Blog in React
    6 projects | news.ycombinator.com | 12 Feb 2024
    Wondering why Docusaurus (https://docusaurus.io) did not match their needs. Works perfectly fine as a blogging engine for our tech blog.
  • Best Software Documentation Tools
    4 projects | dev.to | 5 Feb 2024
    This is developed by Meta. You can create really nice-looking documentation websites super fast.
  • Can Git or any other VCS be used as a database instead of SQL/NoSQL ones? Have you ever seen such a thing?
    4 projects | /r/AskProgramming | 7 Dec 2023
    Docusaurus, a documentation tool by Facebook, hosts a showcase of other websites that use Docusaurus on their Homepage. The list of websites of this showcase is a typescript files that is maintained by Docusaurus devs, and that you can add your website to through PR: https://github.com/facebook/docusaurus/blob/main/website/src/data/users.tsx
  • Community project: PreventRansomware.io
    2 projects | /r/cybersecurity | 6 Dec 2023
    Fix "Edit this page" links at the bottom of each doc (Problem with the Docusaurus build I guess)

What are some alternatives?

When comparing LennahSSG and Docusaurus you can also consider the following projects:

GAS-ssg - Gus' Awesome SSG

nextra - Simple, powerful and flexible site generation framework with everything you love from Next.js.

conan - Conan - The open-source C and C++ package manager

storybook - Storybook is a frontend workshop for building UI components and pages in isolation. Made for UI development, testing, and documentation.

oauth2-proxy - A reverse proxy that provides authentication with Google, Azure, OpenID Connect and many more identity providers.

JSDoc - An API documentation generator for JavaScript.

VuePress - 📝 Minimalistic Vue-powered static site generator

MkDocs - Project documentation with Markdown.

mkdocs-material - Documentation that simply works

docsify - 🃏 A magical documentation site generator.

BookStack - A platform to create documentation/wiki content built with PHP & Laravel

Hugo - The world’s fastest framework for building websites.