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

https://github.com/armour/go-node-builtins

🔮 Go clone of https://github.com/juliangruber/builtins - List of node.js builtin modules
https://github.com/armour/go-node-builtins

builtins golang nodejs

Last synced: about 2 months ago
JSON representation

🔮 Go clone of https://github.com/juliangruber/builtins - List of node.js builtin modules

Awesome Lists containing this project

README

        

# go-node-builtins

[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)
[![Go Report Card](https://goreportcard.com/badge/github.com/Armour/go-node-builtins)](https://goreportcard.com/report/github.com/Armour/go-node-builtins)
[![Go Project Layout](https://img.shields.io/badge/go-layout-blue.svg)](https://github.com/golang-standards/project-layout)
[![Go Doc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/Armour/go-node-builtins/cmd/builtins)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Template from jarvis](https://img.shields.io/badge/Hi-Jarvis-ff69b4.svg)](https://github.com/Armour/Jarvis)

## Install

```bash
go get github.com/Armour/go-node-builtins/cmd/builtins
```

## Example

```go
package main

import (
"fmt"

"github.com/Armour/go-node-builtins/cmd/builtins"
)

func main() {
b, err := builtins.GetVersion("6.0.0")
if err != nil {
// handle error
}
fmt.Printf("%v", b)
}
```

## Contributing

See [CONTRIBUTING.md](https://github.com/Armour/go-node-builtins/blob/master/.github/CONTRIBUTING.md)

## License

[MIT License](https://github.com/Armour/go-node-builtins/blob/master/LICENSE)