mh-ssg VS cv-ssg

Compare mh-ssg vs cv-ssg and see what are their differences.

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
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
mh-ssg cv-ssg
13 11
1 0
- -
0.0 0.0
over 2 years ago over 2 years ago
JavaScript JavaScript
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.

mh-ssg

Posts with mentions or reviews of mh-ssg. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-11-18.
  • Publishing my first package
    1 project | dev.to | 26 Nov 2021
    This week, I've published my 1st package on npm - mh-ssg - a static site generator CLI.
  • Adding Continuous Integration to a Project
    2 projects | dev.to | 18 Nov 2021
    I also worked on another project, mh-ssg, and added tests to this project as well. I created unit tests for a function called processFolder(). This function accepts an input folder path, output folder path and stylesheet URL. I created two unit tests, one which tests when a valid input folder containing files is passed to the function and one which tests when a non-existent folder is passed to the function. The function logs a message to the console depending on how many files are saved in the output folder, so the tests I wrote tested for these console logs.
  • Add testing to SSG
    3 projects | dev.to | 12 Nov 2021
    For this lab, I picked Jest as the testing tool for mh-ssg. This is a popular Javascript testing framework thanks to its simplicity and ease of usage.
  • Adding Static Analysis Tools to SSG
    3 projects | dev.to | 4 Nov 2021
    To maintain the quality of source code, I added a formatter and a linter for my project.
  • Static Site Generator - Support static files
    4 projects | dev.to | 28 Oct 2021
    Throughout the previous week, I was exploring Docusaurus and found that they have a feature to support static files. I find this feature very useful for any static site generator since images, favicons, stylesheets, etc. are very common parts of a webpage. Therefore, I decided to add this feature in my tool.
  • Code Refactoring and Rebase
    1 project | dev.to | 14 Oct 2021
    As new features are added to the tool, I realized that the logic is not clear anymore and some parts were duplicated, making it inefficient and hard to maintain. This time, I decided to focus on removing those duplications by moving the statements to the appropriate place and extracting function for reusability. All the refactoring was done through a single commit with the help of git rebase.
  • Working with git remote - approving new feature
    2 projects | dev.to | 8 Oct 2021
    Luke also implemented the same feature for my project. His code in general was good but I suggested some changes including separating modules and combining functions to remove code duplicates.
  • A different way of reviewing pull requests
    3 projects | dev.to | 7 Oct 2021
    After looking through my classmates' projects, I decided to work on Minh Hang's static site generator and filed an issue to her repo.
  • Merges and conflicts
    1 project | dev.to | 30 Sep 2021
    In the last update, my friend - Dustin - helped to add Markdown as a valid input for my tool. Markdown syntaxes are different from HTML syntaxes and he has worked on converting some of them. This time I decided to add two more:
  • Collaboration and pull requests
    2 projects | dev.to | 23 Sep 2021
    I've been sending a lot of pull requests but this was actually my first time receiving one 😄 and Dustin was my first contributor. He also proposed to add Markdown support for my tool and to parse all the headings, bold, italics and link from markdown into the corresponding HTML tags. I scanned through the pull request and found some minor issues, including missing new feature in documentation and missing the handling of the output file name. We also had different opinions about the implementation of .txt file and .md file. However after discussion, we came to agreement and I approved his changes.

cv-ssg

Posts with mentions or reviews of cv-ssg. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-11-03.
  • OSD600 - Adding Continuous Integration (CI)
    1 project | dev.to | 19 Nov 2021
    After forking and cloning Dustin's repo to my local machine, I read through the CONTRIBUTING.md to set up and run the tool to make sure it work correctly.
  • OSD-600 Lab 07
    3 projects | dev.to | 3 Nov 2021
    As I'm using Javascript for my project, I have Prettier as the default code formatter.
  • Implement cool features for my static site generator
    3 projects | dev.to | 29 Oct 2021
    Fully support for markdown file
  • Rewriting history in Git
    1 project | dev.to | 14 Oct 2021
    Before using classes I will have around 6 files in my helpers folder here
  • OSD600 - Using Git Remote And Git Merge For Collaboration
    4 projects | dev.to | 8 Oct 2021
    In lab4, I have another chance to contribute to my classmate's repo. This time I am going to add support for config files to Dustin's repo.
  • Adding new feature for a static site generator written in Javascript
    2 projects | dev.to | 7 Oct 2021
    Her issue link Her pull request My repo
  • Working with parallel branches in Git
    1 project | dev.to | 30 Sep 2021
    The 2 issues I was talking about: First one Second one
  • Collaboration and pull requests
    2 projects | dev.to | 23 Sep 2021
    As a part of the Open Source Development course that I'm taking, this week I needed to make some contributions to someone else's repo. As I was looking through some projects about CLI for Static Site Generator, Dustin's repo immediately caught my attention. The code is also written in Javascript but Dustin used commander, which was different from me. I thought contributing to his repo would help me learn something new so I filed an issue to add a new feature to his tool.
  • Learnings from release 0.1
    2 projects | dev.to | 17 Sep 2021
    Well, it was very new for me to test review someone’s code as I was doing it for the first time, but I found myself comfortable and confident enough to test his work after reading this post in which he explains how to use his tool. The tool documentation being so good, it was easy for me to install, run and test in my local machine. Well, everything worked perfectly and according to the requirements, and that did not surprise me, but the surprising part was it was done so amazingly that it gave a hard time to find 3 issues in the code! The 2 of the 3 issues I found were related to commandline options and the third one was related to version. The options part had an issue that the output on the terminal was not align which I according to me, if improvised can give a better look of using the whole tools. The second issue regarding options was that the tool was using commandline arguments as program variables instead of options. Improving this can make the work easier for the developer and can also make the work more organized. The final issue was related to the tool version. The program was not able to pick the package.json file which gave an error when I tried seeing the version number through the commandline.
  • Process of reviewing my friend's code in Nodejs
    3 projects | dev.to | 17 Sep 2021
    MY REPO RITIK's REPO

What are some alternatives?

When comparing mh-ssg and cv-ssg you can also consider the following projects:

yargs - yargs the modern, pirate-themed successor to optimist.

commandline-ssg

Docusaurus - Easy to maintain open source documentation websites.

mini-ssg - MINI - A minimalist static site generator written in JS.

cv-ssg - Static site generator