Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wellington/go-libsass
Go wrapper for libsass, the only Sass 3.5 compiler for Go
https://github.com/wellington/go-libsass
Last synced: 13 days ago
JSON representation
Go wrapper for libsass, the only Sass 3.5 compiler for Go
- Host: GitHub
- URL: https://github.com/wellington/go-libsass
- Owner: wellington
- License: apache-2.0
- Created: 2015-04-19T15:09:47.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2023-12-05T09:50:44.000Z (11 months ago)
- Last Synced: 2024-10-25T04:09:49.325Z (14 days ago)
- Language: C++
- Homepage: http://godoc.org/github.com/wellington/go-libsass
- Size: 4.15 MB
- Stars: 206
- Watchers: 9
- Forks: 29
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-go - go-libsass - Go wrapper to the 100% Sass compatible libsass project. (CSS Preprocessors / Standard CLI)
- fucking-awesome-go - go-libsass - Go wrapper to the 100% Sass compatible libsass project. (CSS Preprocessors / Standard CLI)
- awesome-go - go-libsass - Go wrapper to the 100% Sass compatible libsass project. (CSS Preprocessors / Standard CLI)
- awesome-github-star - go-libsass
- awesome-go - go-libsass - Go wrapper to the 100% Sass compatible libsass project. (CSS Preprocessors / Standard CLI)
- awesome-go - go-libsass - Go wrapper for libsass, the only Sass 3.5 compiler for Go - ★ 107 (CSS Preprocessors)
- awesome-go-extra - go-libsass - 04-19T15:09:47Z|2020-10-23T19:07:14Z| (CSS Preprocessors / Advanced Console UIs)
- awesome-go-with-stars - go-libsass - Go wrapper to the 100% Sass compatible libsass project. (CSS Preprocessors / Standard CLI)
- awesome-go-plus - go-libsass - Go wrapper to the 100% Sass compatible libsass project. ![stars](https://img.shields.io/badge/stars-206-blue) ![forks](https://img.shields.io/badge/forks-29-blue) (CSS Preprocessors / Standard CLI)
README
libsass
=========* Deprecated
Try this project [https://github.com/bep/godartsass](https://github.com/bep/godartsass)[![Circle CI](https://circleci.com/gh/wellington/go-libsass.svg?style=svg)](https://circleci.com/gh/wellington/go-libsass) [![Build status](https://ci.appveyor.com/api/projects/status/uhl4swbb2r7lcfpc/branch/master?svg=true)](https://ci.appveyor.com/project/drewwells/go-libsass/branch/master)
The only Sass compliant Go library! go-libsass is a wrapper to the [sass/libsass](http://github.com/sass/libsass) project.
To build, setup Go
go build
To test
go test
Basic example more examples found in [examples](examples)
```go
buf := bytes.NewBufferString("div { p { color: red; } }")
if err != nil {
log.Fatal(err)
}
comp, err := libsass.New(os.Stdout, buf)
if err != nil {
log.Fatal(err)
}if err := comp.Run(); err != nil {
log.Fatal(err)
}
```Output
```
div p {
color: red; }
```### Updating libsass
```
cd libsass-src; git fetch; git checkout vX.X.X
git commit -m "updated libsass to vX.X.X"
make update-libsass
# iterate on includes and code changes until tests pass
```### FAQ
* Compiling go-libsass is very slow, what can be done?
Go-libsass compiles C/C++ libsass on every build. You can install the package and speed up building `go install github.com/wellington/go-libsass`. Alternatively, it's possible to link against system libsass and forego C compiling with `go build -tags dev`.
* How do I cross compile?
Since this package uses C bindings, you will need gcc for the target platform. For windows see, https://github.com/wellington/go-libsass/issues/37