January 5, 2025

Exploring Preprocessors: Bosnian CSS Preprocessor

A look at my experimental NPM package that lets you write CSS using Bosnian language properties.

npm css open source fun project preprocessor

I recently created a fun and experimental NPM package called bosnian-css-preprocessor that allows developers to write CSS using Bosnian language properties.

What Does It Do?

The package provides a simple way to write CSS properties using Bosnian words. Common properties like ‘width’ become ‘sirina’, ‘height’ becomes ‘visina’, and ‘background-color’ becomes ‘boja-pozadine’. The preprocessor then transforms these Bosnian properties into standard CSS that browsers can understand.

Why Create This?

While this package might seem like a novelty, it raises interesting questions about programming language accessibility. Not everyone is comfortable with English, and ideas like this can help:

  1. Make learning CSS more approachable for non-English speakers
  2. Demonstrate how preprocessors work
  3. Learn more about how to build and maintain multilingual projects

Learning Through Building

Creating this package taught me lessons about:

Getting Started

The package is available on NPM and can be easily installed using npm or yarn. Once installed, it provides a simple transform function that converts your Bosnian CSS into standard CSS. Check out the NPM package page for full documentation and usage examples.

Remember, sometimes the most interesting projects come from simply asking “What if?” and building something fun!

Back to Blog