Popularity
5.3
Stable
Activity
0.0
Stable
204
9
28

Code Quality Rank: L1
Programming language: C++
License: Apache License 2.0
Tags: CSS Preprocessors    
Latest version: v0.9.2

go-libsass alternatives and similar packages

Based on the "CSS Preprocessors" category.
Alternatively, view go-libsass alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of go-libsass or a related project?

Add another 'CSS Preprocessors' Package

README

libsass

Circle CI Build status

The only Sass compliant Go library! go-libsass is a wrapper to the sass/libsass project.

To build, setup Go

go build

To test

go test

Basic example more examples found in [examples](examples)

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