Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bazil/fuse
FUSE library for Go. go get bazil.org/fuse
https://github.com/bazil/fuse
Last synced: 28 days ago
JSON representation
FUSE library for Go. go get bazil.org/fuse
- Host: GitHub
- URL: https://github.com/bazil/fuse
- Owner: bazil
- License: other
- Created: 2013-04-01T21:32:37.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-12-20T08:43:43.000Z (11 months ago)
- Last Synced: 2024-10-11T23:11:26.585Z (about 1 month ago)
- Language: Go
- Homepage: http://bazil.org/fuse
- Size: 1.09 MB
- Stars: 1,606
- Watchers: 49
- Forks: 266
- Open Issues: 61
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-fuse-fs - bazil/fuse - FUSE library for Go. Language: (Libraries)
README
bazil.org/fuse -- Filesystems in Go
===================================`bazil.org/fuse` is a Go library for writing FUSE userspace
filesystems.It is a from-scratch implementation of the kernel-userspace
communication protocol, and does not use the C library from the
project called FUSE. `bazil.org/fuse` embraces Go fully for safety and
ease of programming.Here’s how to get going:
go get bazil.org/fuse
Website: http://bazil.org/fuse/
Github repository: https://github.com/bazil/fuse
API docs: http://godoc.org/bazil.org/fuse
Our thanks to Russ Cox for his fuse library, which this project is
based on.