npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gokums-cli

v1.2.22

Published

Client for Gokums Framework

Downloads

12

Readme

Gok (cli)

CircleCI

Gok Introduction

Gok is a command line based tool to allow Golang developers to create a project, within which golang services and gateways can be written and configured for deployment to Google's Cloud Platform (GCP), specifically Google Kubernetes Engine.

The intention is to consolidate Kubernetes configuration for services into a single convention. The aim is to encourage teams to use a single convention to increase productivity and decrease learning curve for new team members.

CLI Introduction

This repo defines the implementation for the CLI subsystem of Gok. It also serves as the home for usage documentation for the Gok tool.

System Requirements

Operating System

  • *nix system such as:
    • Apple MacOS (currently executing on MacOS 10.13.x High Sierra)
    • Linux such as Ubuntu (not officially tested, but should work)
    • BSD Unix (not officially tested, but should work)
    • etc

Window's users could consider running a VM or installing "Windows Subsystem for Linux". Note: This is untested, and currently not supported.

System Dependencies

Installation

Install the tooling via NPM. It should be installed globally.

Using the terminal, start a new shell of your choice, and enter the following:

npm i -g gokums-cli

Perform checks

Use the doctor command to ensure your system is ready. Again, via a Terminal shell:

gok doctor

If all is OK, you should see something like:

Checking gokums-cli... You're using latest 1.0.8
Checking Node.js...  version 8.4.0 OK
Checking Golang... go version go1.9.4 darwin/amd64 OK
Checking gcloud...  OK
Checking kubectl...  OK
Checking protoc...  version 3.5.1 OK
Checking git...  OK
Checking docker...  OK
Checking Golang dependency manager dep...  OK
Checking make version...  OK
Checking GOPATH...  OK
Checking protoc-gen-go...  OK
Checking protoc-gen-grpc-gateway...  OK
Checking protoc-gen-govalidators...  OK

Usage

Please refer to usage guide.