Popularity
6.9
Declining
Activity
0.0
Stable
29
4
10
Programming language: Crystal
License: MIT License
Tags:
Low Level Bindings
Latest version: v0.4.2
crt.cr alternatives and similar shards
Based on the "Low level bindings" category.
Alternatively, view crt.cr alternatives based on common mentions on social networks and blogs.
-
termbox-crystal
Bindings, wrapper, and utilities for termbox (terminal interface library) in Crystal -
wkhtmltopdf-crystal
Crystal C bindings and wrapper for libwkhtmltox library -
serialport.cr
Crystal bindings for libserialport: cross-platform library for accessing serial ports. -
crystal-liblmdb
Crystal language bindings for the Symas LMDB database
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of crt.cr or a related project?
README
crt.cr 
Bindings for libncursesw and crt class
- crystal: 0.27.2 0.31.1 0.32.1 0.33.0
Installation
Add this to your application's shard.yml
:
dependencies:
crt:
github: maiha/crt.cr
version: 0.4.2
Usage
require "crt"
win = Crt::Window.new(24, 80)
win.clear
win.print(5, 10, "hello world")
win.refresh
Crt.done
See [./examples/](./examples/) for more usages.
Supported C Functions
Development
- for ubuntu
apt-get install libncursesw5-dev
apt-get install libgpm-dev # needs only for static link
Contributing
- Fork it ( https://github.com/maiha/crt.cr/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- maiha maiha - creator, maintainer