Intevel / read-pkg

๐ŸŒ  Rapid-Fast reading of package.json files in Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

read-pkg

๐ŸŒ  Rapid fast reading of package.json files in Go

Installation

go get github.com/intevel/read-pkg

Example

package main

import (
	"log"
	p "github.com/intevel/read-pkg"
)

func main () {
	pkg, err := p.ParsePackage()
	if err != nil {
		log.Fatal(err)
	}
	log.Println(pkg)
}

About

๐ŸŒ  Rapid-Fast reading of package.json files in Go


Languages

Language:Go 100.0%