mh-ssg VS execa

Compare mh-ssg vs execa 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 execa
13 20
1 6,363
- -
0.0 9.6
over 2 years ago 5 days 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.

execa

Posts with mentions or reviews of execa. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-09.
  • Google ZX – A tool for writing better scripts
    8 projects | news.ycombinator.com | 9 Feb 2024
    I’m partial to Sindre Sorhus’ execa, this document outlines the differences:

    https://github.com/sindresorhus/execa/blob/main/docs/scripts...

  • Execa: Process Execution for Humans in Node.js
    1 project | news.ycombinator.com | 20 Jan 2024
  • The Bun Shell
    1 project | news.ycombinator.com | 20 Jan 2024
    Yeah, or over https://github.com/sindresorhus/execa?

    And given the existence of those npm packages, is there any aspect of Bun Shell that required it to be built into the Bun runtime instead of published to npm?

    17 projects | news.ycombinator.com | 20 Jan 2024
    For something which works across all JS runtimes (Deno, Node) and achieves basically the same, check out the popular JS library Execa[1]. Works like a charm!

    [1]: https://github.com/sindresorhus/execa

  • Building Reactive CLIs with Ink - React CLI library
    3 projects | dev.to | 3 Nov 2023
    To simplify the process of running the commands, I will use execa - abstraction library on top of Node.js child_process methods.
  • How to run DB migrations in CICD Pipeline
    2 projects | /r/ExperiencedDevs | 21 Apr 2023
    Hello, this is an interesting problem. At https://stacktape.com (where we're creating a developer-friendly abstraction of AWS), we're recommending 2 options: - use a "deployment script" (basically a custom-resource lambda function that runs during the CloudFormation deployment). You can install prisma into it, and then execute the migration command from the lambda function using something like execa, if you're using Javascript/Typescript. You can easily do this with Stacktape anytime. - use a bastion (EC2) instance (deployed to the the VPC where your RDS db is). The cheapest instances cost ~4.5$/month, so it shoudln't be too costly. You can also securely connect to it using EC2 instance connect, that leverages IAM to grant permissions to connect to it. (this is something we're currently implementing as Stacktape, and will be ready in ~2 weeks).
  • Fluent shell scripts with JavaScript
    1 project | /r/javascript | 13 Mar 2023
  • Testing in ReScript
    8 projects | dev.to | 2 Jan 2023
    For FE, it’s usually Cypress or Playwright; for BE, it’s to run a server and start sending requests; for CLI, I like the tool called execa.
  • How to use execa@6 with NestJs?
    2 projects | /r/node | 6 Jan 2022
    Since version 6 execa is pure ES module. An attempt to import a package into NestJS project results in an error:
  • Getting vim ex command output without a TTY?
    1 project | /r/vim | 14 Dec 2021
    Essentially when I run this from my shell I get a listing of keymaps configured for vim. However, when I run it from a program without a PTY or TTY (e.g., via Rust's Command or Node's execa) I get an exit code of 0 and no output.

What are some alternatives?

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

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

zx - A tool for writing better scripts

Docusaurus - Easy to maintain open source documentation websites.

Electron - :electron: Build cross-platform desktop apps with JavaScript, HTML, and CSS

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

nodegit - Native Node bindings to Git.

schemapack - Create a schema object to encode/decode your JSON in to a compact byte buffer with no overhead.

hypernova - A service for server-side rendering your JavaScript views

nan - Native Abstractions for Node.js

agenda - Lightweight job scheduling for Node.js

listr - Terminal task list

v86 - x86 PC emulator and x86-to-wasm JIT, running in the browser