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: 3 months ago
JSON representation
🌠Rapid-Fast reading of package.json files in Go
- Host: GitHub
- URL: https://github.com/intevel/read-pkg
- Owner: Intevel
- Created: 2023-04-02T08:24:08.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-02T19:20:17.000Z (over 2 years ago)
- Last Synced: 2025-04-02T00:41:54.667Z (3 months ago)
- Topics: go, golang, npm, npm-package, packagejson, pkg
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 mainimport (
"log"
p "github.com/intevel/read-pkg"
)func main () {
pkg, err := p.ParsePackage()
if err != nil {
log.Fatal(err)
}
log.Println(pkg)
}
```