https://github.com/teliosdev/liquidscript
Variant of coffeescript, written in ruby.
https://github.com/teliosdev/liquidscript
Last synced: about 1 month ago
JSON representation
Variant of coffeescript, written in ruby.
- Host: GitHub
- URL: https://github.com/teliosdev/liquidscript
- Owner: teliosdev
- License: mit
- Created: 2014-02-24T11:07:38.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-11T21:04:15.000Z (over 10 years ago)
- Last Synced: 2025-04-02T23:05:56.523Z (about 2 months ago)
- Language: Ruby
- Homepage: https://liquidscript.io
- Size: 1.09 MB
- Stars: 13
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# 
[](https://travis-ci.org/medcat/liquidscript) [](https://coveralls.io/r/medcat/liquidscript?branch=master) [](https://codeclimate.com/github/medcat/liquidscript) [](http://badge.fury.io/rb/liquidscript) [](https://gemnasium.com/medcat/liquidscript) [](http://choosealicense.com/licenses/mit/)
A javascript-based language that compiles to javascript.
## Installation
Add this line to your application's Gemfile:
gem 'liquidscript'
And then execute:
$ bundle
Or install it yourself as:
$ gem install liquidscript
If you're using Sprockets in your application, place this in
your Gemfile:gem 'liquidscript', require: 'sprockets/liquidscript'
## Usage
To use liquidscript:
```
TODO: usage example
```The language of liquidscript:
```coffeescript
# This is an object.{
test: "hello",# Note here that a single-quoted string does not have an ending
# delimiter. This is on purpose.
foo: 'bar # ' # syntax highlighting fix
}
``````coffeescript
# This is a functionfunc = ()-> {
console.log("hello world")
}func()
```## Contributing
1. Fork it ()
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request