Git Product home page Git Product logo

vscode-cljs-extension's People

Contributors

maxlorenz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

neupsh

vscode-cljs-extension's Issues

shadow-cljs suggestions

Cool stuff. I have a few suggestions though.

(Read: Shadow-cljs as in no Java at all)

This is incorrect, shadow-cljs uses the normal JVM compiler so you definitely need Java.

This shadow-cljs.edn should be enough.

{:dependencies []

 :source-paths ["src/cljs"]

 :builds
 {:extension
  {:target :node-library
   :exports {:activate cljs-ext.core/activate}
   :output-to "extension.js"}}}
  • :optimizations defaults to :simple for release and :none for development.
  • :output-wrapper is always done for :node-library, the config option has no effect.

If you'd drop lein support you could do this for src/cljs/cljs_ext/core.cljs

(ns cljs-ext.core
  "VSCode extension in ClojureScript"
  (:require ["vscode" :as vscode :refer (commands window)]))
  
(defn say-hello-command []
  (.showInformationMessage window "hello world"))

(defn activate [context]
  (.registerCommand commands "extension.sayHello" say-hello-command)
  (.log js/console "Extension activated."))

The :require syntax is only supported by shadow-cljs (see CLJS-2061 for official progress).

I also recommend npm install --save-dev shadow-cljs in the project so it gets picked over the global install and can be updated with the project.

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.