Giter Site home page Giter Site logo

openpeeps / bro Goto Github PK

View Code? Open in Web Editor NEW
19.0 4.0 0.0 931 KB

Bro - A super fast stylesheet language for cool kids! Alternative to SassC, DartSass SassJS and Less.

Home Page: https://openpeeps.github.io/bro/theindex.html

License: GNU Lesser General Public License v3.0

Nim 100.00%
bro developer-tools nim nim-lang sass css css-compiler stylesheet-language csstree dart-sass

bro's People

Contributors

georgelemon avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

bro's Issues

Implement a CSS parser

@import plain.css should parse the CSS file and turn it into a BRO-compatible abstract syntax tree. This is a must-have feature that would make it easier to work with all CSS frameworks ๐Ÿ‘Œ

Some CSS:

.btn {
  font-size: 16px;
  color: blue
}

Some .bass file:

@import main.css

.btn-secondary
  @extend .btn
  if this.has("color"):
    echo this.color // will print `blue`

Compiler optimizations

  • Autoprefixer

  • Deduplication

.btn 
  color: blue

.btn
  font-size: 14px

should output a single .btn selector

.btn{color: blue; font-size: 14px}

Other cool features:

  • CSS alphabetize (done by std/critbits)

Implementation of string concatenation

Some examples

$x = "One, two, " & "this is readable"

Variables should be fine too (using backticks). Similar with template literals in JS:

$name = "John"
$num = 7
echo `Hello, ${name}! You lucky ${num}.`

Build a landing page

Bro needs a cool website, with playground (via WASM) and docs. Will be available at bro-lang.com

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.