Coder Social home page Coder Social logo

js-idiomatic-symbols's Introduction

js-idiomatic-symbols

Transform Clojure naming conventions to those of JavaScript.

More precisely, these transformations:

  dash-delimited                   ;=> dashDelimited
  set!                             ;=> set
  *dynamic*                        ;=> dynamic
  **private**                      ;=> __private__
  all-humans-are-created=and-free  ;=> allHumansAreCreatedEqualAndFree
  apples+oranges                   ;=> applesPlusOranges
  even?                            ;=> isEven
  rope->str                        ;=> ropeToStr
  rope<-str                        ;=> ropeFromStr

Rationale

Using Clojure/Lisp symbol names in ClojureScript but exporting them as idiomatic JavaScript symbols feels like the Right Thing. It also felt a bit tedious, so I created this little library.

Usage

Add the following entry to your project.clj :dependencies vector:

Clojars Project

Then, in your code, you can do these things:

(ns js-friendly
  (:require [js-idiomatic-symbols.core :as jsid])
  (:require-macros [js-idiomatic-symbols.macros :as jsidm]))

;; Of course, the whole thing is based on messing with strings...
(jsid/js-idiomatize-str "this<-me->you?!") ;=> "isThisFromMeToYou"

;; ... but symbol manipulation is more important:
(jsid/js-idiomatize-sym 'this<-me->you?!) ;=> 'isThisFromMeToYou

;; You might ensure js-formatted names up front:
(jsidm/defjs-idiomatic this<-me->you?! "Love, love, love.")
isThisFromMeToYou ;=> "Love, love, love."
this<-me->you?! ; note that this will not be defined at all

;; Or you might just write normal ClojureScript
(def not->disencourage "But it's NOT so easy.")

;;; ...

;; ... and then define additional symbols for the public (JavaScript) API:
(jsidm/defjs-idiomatic-export not->disencourage)
notToDisencourage ;=> "But it's NOT so easy."

;;; Both macros also add the ^:export metadata for you.

And that's all there is to this.

Acknowledgements

The inspiration for this project can be largely attributed to Gozala's Wisp. Specifically, this part.

License

Copyright © 2014 Pauli Jaakkola

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

js-idiomatic-symbols's People

Contributors

nilern avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

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.