DEV Community

Cover image for Quick Notes & 2 Methods for Installing Hasura CLI
Adron Hall
Adron Hall

Posted on

Quick Notes & 2 Methods for Installing Hasura CLI

This post just elaborates on the existing documentation here with a few extra notes and details about installation. This can be helpful when determining how to install, deploy, or use the Hasura CLI for development, continuous integration, or continuous deployment purposes.

Installation

There are three primary operating system binary installations: Windows, MacOS, and Linux.

Linux

In the shell run the following curl command to download and install the binary.

curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | bash
Enter fullscreen mode Exit fullscreen mode

This command installs the command to /usr/local/bin, but if you'd like to install it to another location you can add the follow variable INSTALL_PATH and set it to the path that you want.

curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | INSTALL_PATH=$HOME/bin bash
Enter fullscreen mode Exit fullscreen mode

What this script does, in short, follows these steps. The latest version is determined, then downloaded with curl. Once that is done, it then assigns permissions to the binary for execution. It also does some checks to determine OS version, type, distro, if the CLI exists or not, and other validations. To download the binary, and source if you'd want for a particular version of the binary, check out the manual steps listed later in this post.

MacOS

For MacOS the same steps are followed as Linux, as the installation script steps through the same procedures.

curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | bash
Enter fullscreen mode Exit fullscreen mode

As with the previous Linux installation, the INSTALL_PATH variable can also be set if you'd want the installation of the binary to another path.

Windows

Windows is a different installation, as one might imagine. The executable (cli-hasura-windows-amd64.exe) is available on the releases page. This leaves it up to you to determine how exactly you want this executable to be called. It's ideal, in my opinion, to download this and then put it into a directory where you'll map the path. You'll also want to rename the executable itself from cli-hasura-windows-amd64.exe to hasura.exe if for any reason because it's easier to type and then it'll match the general examples provided in the docs.

To setup a path on Windows to point to the directory where you have the executable, you'll want to open up ht environment variables dialog. That would be following Start > System > System Settings > Environment Variables. Scroll down until the PATH is viewable. Click the edit button to edit that path. Set it, and be sure to set it up like c:\pathWhatevsAlreadyHere;c:\newPath\directory\where\hasura\executable\is\. Save that, launch a new console and that new console should have the executable available now.

Manual Download & Installation

You can also navigate directly to the releases page and get the CLI at https://github.com/hasura/graphql-engine/releases. All of the binaries are compiled and ready for download along with source code zip file of the particular builds for those binaries.

Installation via npm

The CLI is avialable via an npm package also. It is independently maintained (the package that wraps the executable) by members in the community. If you want to provide a set Hasura CLI version to a project, using npm is a great way to do so.

For example, if you want to install the Hasura CLI, version in your project as a development dependency, use the following command to get version 1.3.0 for example.

npm install --save-dev hasura-cli@1.3.0
Enter fullscreen mode Exit fullscreen mode

For version 1.3.1 it would be npm install --save-dev hasura-cli@1.3.1 for example.

The dev dependencies in the package.json file of your project would then look like the following.

"devDependencies": {
"hasura-cli": "^1.3.0"
}
Enter fullscreen mode Exit fullscreen mode

Another way you can install the CLI with npm is to just install it globally, with the same format but swap the --save-dev with --global. The following would install the latest command. You can add the @version to the end and get a specific version installed globally too, just like as shown with the dev install previously.

npm install --global hasura-cli
Enter fullscreen mode Exit fullscreen mode

Notes

Using the npm option is great, if you're installing, using, writing, or otherwise working with JavaScript, have Node.js installed on the dev and other machines, and need to have the CLI available on those particular machine instances. If not, I'd suggest installing via one of the binary options, especially if you're creating something like a slimmed down Alpine Linux container to automate some Hasura CLI executions during a build process or something. There are a lot of variance to how you'd want to install and use the CLI, beyond just installing it to run the commands manually.

If you're curious about any particular installation scenarios, ask me @Adron and I'll answer there and I'll elaborate here on this post!

Happy Hasura CLI Hacking! 🤘

References

Sign Up for Thrashing Code Newsletter

For JavaScript, Go, Python, Terraform, and more infrastructure, web dev, and coding in general I stream regularly on Twitch at https://twitch.tv/thrashingcode, post the VOD's to YouTube along with entirely new tech and metal content at https://youtube.com/c/ThrashingCode.

For more blogging, I've got https://compositecode.blog and the Thrashing Code Newsletter, sign up for it here!

Top comments (1)

Collapse
 
jiftuq profile image
chris

Installation for Windows doesn't work