Slateide

A simple light weight IDE for Scala
Alternatives To Slateide
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Theia17,906
3 days ago1,390otherTypeScript
Eclipse Theia is a cloud & desktop IDE framework implemented in TypeScript.
Che6,78467 days ago91December 16, 2020389epl-2.0TypeScript
The Kubernetes-Native IDE for Developer Teams
Recaf4,507
2 months ago75mitJava
The modern Java bytecode editor
Pravega1,853233 days ago23April 12, 2022210apache-2.0Java
Pravega - Streaming as a new software defined storage primitive
Goclipse842
6 years ago48epl-1.0Java
Eclipse IDE for the Go programming language:
Smartim4intellij825
3 years ago41apache-2.0Java
IntelliJ IDEA上的SmartIM(原SmartQQ)插件,可以在IDEA中使用QQ或微信聊天
Intellij Plugin Save Actions504
6 months ago58mitJava
Supports configurable, Eclipse like, save actions, including "organize imports", "reformat code" and "rearrange code".
Buildship502
3 days ago278Java
The Eclipse Plug-ins for Gradle project.
Scala Ide494
3 years ago2bsd-3-clauseScala
Scala IDE for Eclipse
Samples435
a year ago27bsd-3-clauseJava
JavaFX samples to run with different options and build tools
Alternatives To Slateide
Select To Compare


Alternative Project Comparisons
Readme

Slate – A light weight IDE for Scala

Slate is a simple light weight editor that integrates with the Scala compiler for auto compilation, Play framework for running tests and server and enables an easy execution of Scala applications and Scalatest test cases.

Slate is heavily inspired by Eclipse IDE but keeps coding light and unintrusive. For example, code is autocompiled on every save but the user is not blocked until the compilation completes.

However, it does offer a better Scala support than JEdit or Vim.

Now, all of those are great tools (JEdit, Vim, Eclipse), they just didn’t fulfill my need. The first two offered too little, while Eclipse offered too much to make it hang every now and then.

If you are looking for a full-bodied IDE, Eclipse/Netbeans/IntelliJ Idea may be better choices.

Installation

Download an appropriate package from under dist directory and unzip/ untar into a local directory. Ensure that you have SCALA_HOME and JAVA_HOME defined in the environment. Also, please ensure that none of these paths have spaces in their names.

Slate has been built on Scala 2.8.1, Sun JDK 1.6 and Play 1.2.3

Main Features

1. Syntax coloring: Based on the file’s type, colors the text. Support for JS, CSS, Properties files, XML and YML apart from Scala.
2. Integration with Scala Interpreter
3. Organise Imports: Does not remove any existing imports but will add imports if there were problems found in the last compilation. Also removes duplicate imports, rolls up imports into one where needed and arranges them in alphabetical order.
4. Format File: Indents the code based on opening and closing braces, ensures space around equals sign (“=”), removes extra blank lines and extra spaces at the end of each line.
5. Open a resource: Looks up and opens a file based on its name. The search is incremental so resource list is refreshed with every key stroke.
6. Code Assist: While Slate does not provide a direct code assist, it does provide 2 useful features. You can lookup all methods of a class and select one of those to be injected into your code. Also, you could look up a type name (so for example, if you wanted to use an InputStream, you could type inputs, do a control space, and it will show all types having InputStream in their names! So you could then choose to use FileInputStream or ByteArrayInputStream).
7. Run an application
8. Run Scalatest Test cases: The results are parsed and output is shown in a nice Eclipse Junit style tree fashion.
9. Run Play test cases: This runs “play autotest” and publishes unit test results in tree fashion. The Selenese test cases are run but not shown in IDE. The are available as HTML files in “project path”/test-results directory.
10. Run the Play server from within the IDE!
11. Ability to create different types of Scala and Java classes using templates.
12. A separate window to show console, so if you use a 2 monitor set up, you could dock the console in one and editor in another. The console is slightly translucent so if you are using console on same window as editor, you could watch it while watching your code too!

New in Release 0.2

1. A 100 character marker (ruler) to indicate long lines in code.
2. Static code analysis that helps identify unused private/ local methods/ variables. This is implemented using Alacs
3. Word completion assistance. This works on the basis of words already defined in the current code.

Future Plans

If the IDE gathers sufficient interest, I would like to build the following:
1. Integrate Java debugger
2. Support refactoring esp. renaming variables and methods.
3. Display a call hierarcy of methods to know where all the method is getting called from.

Building Slate from code

1. Clone the repository
2. Go to the local directory where the code was cloned.
3. Run ant:
ant \-Dscala.home=${SCALA_HOME} \-Dalacs.jar=alacs/alacs-${version}.jar

where ${SCALA_HOME} is the scala home directory and ${version} is the scala version you are working with.

4. Start Slate
cd bin
./slate

Popular Ide Projects
Popular Eclipse Projects
Popular Integrated Development Environments Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Scala
Eclipse
Ide