Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/intevel/read-pkg

🌠 Rapid-Fast reading of package.json files in Go
https://github.com/intevel/read-pkg

go golang npm npm-package packagejson pkg

Last synced: 29 days ago
JSON representation

🌠 Rapid-Fast reading of package.json files in Go

Awesome Lists containing this project

README

        

# read-pkg

🌠 Rapid fast reading of package.json files in Go

## Installation

```bash
go get github.com/intevel/read-pkg
```

## Example

```go
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)
}
```