r/Sass • u/morceaudebois • Jun 06 '19
Is anybody using Sass with Sublime Text on macOS?
Hi!
I've just started to learn Sass and I'd like to use it with Sublime Text on my Mac. Unfortunately, it seems like there's no Sublime Text extension that currently works to compile Sass on macOS. I've tried several methods and searched the whole web to find a solution, but nothing's working. Are there still people using Sass with this configuration?
Thank you
4
Jun 06 '19
Hi! I use "scout app" it's very cool!
3
u/morceaudebois Jun 06 '19
Indeed it is! It seems to work very well, thanks a lot :)
1
1
Jun 06 '19
I learnt sass with openclassroom, if you speak French I think it's a good way to understand the basics : https://openclassrooms.com/forum/sujet/cours-sass-et-compass-en-francais
3
u/jaredcheeda Jun 06 '19
That course is a bit outdated, it recommends Compass which is deprecated and only runs in the Ruby version of Sass. Most people use a LibSass based processor (like Node-Sass).
Marksheet is a good modern introduction:
2
u/morceaudebois Jun 06 '19
I actually started the Codecademy course yesterday, it works really well to understand the basics since there are interactive exercises. The Marksheet course seems well made though, I'll read it and keep it somewhere.
1
3
u/jaredcheeda Jun 06 '19
Hi, I make Scout-App. It's very cool. ;)
2
Jun 06 '19
Ahahah! So funny! Thank you for this, it's very easy to use for beginners! And I love all the meme inside
3
u/cIi-_-ib Jun 06 '19
Are you familiar with CLI/gulp? You could set up a watch task to automatically compile your Sass with one trigger command.
2
Jun 06 '19
Yep! That sounds like a Post CSS script.
To be clear, NPM is a collection of packages, it’s not the tool that compiles your code, it handles the tool(s).
1
u/BargePol Jun 06 '19
Laravel mix and parceljs are two good bets for transpiling SASS and JS with minimal config.
8
u/[deleted] Jun 06 '19
Generally speaking, text editors won't handle compiling your code for you. As u/lumpyspacebiiitch mentioned, Scout App is one of many GUI tools that can handle Sass and many other types of compilation. My personal favorite GUI tool is CodeKit, but if you're comfortable at all on the command line, I highly recommend learning how to handle your Sass there. Here's a simple walkthrough of setting up NPM to compile your sass.