A superset of Roku's BrightScript language. Compiles to standard BrightScript.
The BrighterScript language provides new features and syntax enhancements to Roku's BrightScript language. Because the language is a superset of BrightScript, the parser and associated tools (VSCode integration, cli, etc...) work with standard BrightScript (.brs) files. This means you will get benefits (as described in the following section) from using the BrighterScript compiler, whether your project contains BrighterScript (.bs) files or not. The BrighterScript language transpiles to standard BrightScript, so your code is fully compatible with all roku devices.
Important
We are currently seeking testers for two major rewrites:
-
Language Server Protocol (LSP) Rewrite: We’ve been hard at work revamping our LSP to improve stability, performance, and add new features. We would love your feedback as you put it through its paces. (Join the LSP discussion)
-
Version 1 (v1) Rewrite: This is a complete overhaul of the core of our project. Your input is crucial in helping us identify bugs and further refine the release. (Join the v1 discussion)
If you're interested in helping, please visit the GitHub discussion links above for more information and instructions on how to get involved.
BrighterScript adds several new features to the BrightScript language such as namespaces, classes, import statements, and more. Take a look at the language specification docs for more information.
BrighterScript Language Specification
- Check the entire project for syntax and program errors without needing to run on an actual Roku device.
- Catch syntax and program errors at compile time which would not otherwise appear until runtime.
- The compiler can be used as part of your tool-chains, such as continuous integration or a custom build pipeline.
- Get real-time syntax validation by using the cli in
--watch
mode.
-
Brighterscript is in good hands:
- The project is open source.
- Brighterscript is designed by Roku developers, for Roku developers.
- The project is owned by RokuCommunity and the syntax and features are thoroughly thought out, discussed, and planned.
- Actively developed.
-
Reduce boilerplate code and time debugging with language features like these:
- Import statements
- Declare import statements in scripts instead of xml script tags.
- Automatically add script tags to XML components for all script import statements and their cascading dependencies
- Missing imports are flagged at compile time.
- Classes
- Support for class inheritance and method overrides
- Class fields and can be marked as
public
,protected
, andprivate
and incorrect access will be enforced by compile-time checks. - Class methods are automatically scoped to the class
- Namespaces:
- Automatically add a name prefix to all methods inside a namespace block.
- Prevents method naming collisions and improves code readability and maintainability.
- Missing method invocations, and other namespace related syntax errors are reported at compile time.
- Ternary operator
username = m.user <> invalid ? m.user.name : "not logged in"
- Template strings
print `Hello ${firstNameVar}`
.
- null-coalescing operator
user = m.user ?? getDefaultUser()
- Additional Language features coming soon
- null-conditional operator:
userSettings = m.user?.account?.profile?.settings
- null-conditional operator:
- and more...
- Import statements
-
Full BrighterScript support for syntax checking, validation, and intellisense is available within the Brightscript Language VSCode extension.
-
And if it's not enough, the plugin API allows extending the compiler to provide extra diagnostics or transformations.
The BrighterScript project is used to power the popular Brightscript Language VSCode extension, the maestro framework, and more.
Contact us if you use BrighterScript in your project and would like your logo listed above. More projects are adopting BrighterScript all the time, from using the new BrighterScript language features to simply using the compiler in their build pipeline.
The name BrighterScript is a compliment to everything that is great about Roku's awesome BrightScript language. Naming things is hard, and discoverability and recognizability are both very important. Here are the reasons we chose this name:
- the
er
in BrighterScript represents the additional features we have added on top of BrightScript - It looks so similar to BrightScript, which is fitting because this language is 95% BrightScript, 5% extra stuff (the
er
bits). - The config file and extension look very similar between BrightScript and BrighterScript. Take
bsconfig.json
for example. Whilebrsconfig.json
might be more fitting for a pure BrightScript project,bsconfig.json
is so very close that you probably wouldn't think twice about it. Same with the fact that.bs
(BrighterScript) and.brs
are very similar.
We want to honor BrightScript, the language that BrighterScript is based off of, and could think of no better way than to use most of its name in our name.
npm install brighterscript -g
If your project structure exactly matches Roku's, and you run the command from the root of your project, then you can do the following:
bsc
That's it! It will find all files in your BrightScript project, check for syntax and static analysis errors, and if there were no errors, it will produce a zip at ./out/project.zip
If you need to configure bsc
, you can do so in two ways:
- Using command line arguments.
This tool can be fully configured using command line arguments. To see a full list, run
bsc --help
in your terminal. - Using a
bsconfig.json
file. See the available options below. By default,bsc
looks for absconfig.json
file at the same directory thatbsc
is executed. If you want to store yourbsconfig.json
file somewhere else, then you should provide the--project
argument and specify the path to yourbsconfig.json
file.
-
Your project resides in a subdirectory of your workspace folder.
bsc --root-dir ./rokuSourceFiles
-
Run the compiler in watch mode
bsc --watch
-
Run the compiler in watch mode, and redeploy to the roku on every change
bsc --watch --deploy --host 192.168.1.10 --password secret_password
-
Use a bsconfig.json file not located at cwd
bsc --project ./some_folder/bsconfig.json
-
Run the compiler as a linter only (watch mode supported)
bsc --create-package false --copy-to-staging false
The presence of a bsconfig.json
file in a directory indicates that the directory is the root of a BrightScript project. The bsconfig.json
file specifies the root files and the compiler options required to compile the project. Here is a minimal example, which is recommended for new projects:
{
"rootDir": "src",
"files": [
"**/*"
],
"stagingFolderPath": "dist",
"retainStagingFolder": true,
//this flag tells BrighterScript that for every xml file, try to import a .bs file with the same name and location
"autoImportComponentScript": true,
"sourceMap": true
}
More information on the config file format may be found in the bsconfig.json documentation.
The BrighterScript compiler emits errors and warnings when it encounters potentially invalid code. Errors and warnings may also be emitted by compiler plugins, such as by the BrighterScript linter. These messages can be suppressed if needed; see the documentation.
In order for BrighterScript-transpiled projects to work as ropm modules, they need a reference to bslib (the BrightScript runtime library for BrighterScript features) in their package. As ropm
and brighterscript
become more popular, this could result in many duplicate copies of bslib.brs
.
To encourage reducing code duplication, BrighterScript has built-in support for loading bslib
from ropm. Here's how it works:
- if your program does not use ropm, or does use ropm but does not directly reference bslib, then the BrighterScript compiler will copy bslib to
"pkg:/source/bslib.brs"
at transpile-time. - if your program uses ropm and has installed
bslib
as a dependency, then the BrighterScript compiler will not emit a copy of bslib atpkg:/source/bslib.brs
, and will instead use the path to the version from ropmpkg:/source/roku_modules/bslib/bslib.brs
.
bslib is published to npm under the name @rokucommunity/bslib. If you use NodeJS version 12 or above, we recommend installing @rokucommunity/bslib
with the bslib
alias, as it produces smaller transpiled code (i.e. emits bslib_
prefix instead of rokucommunity_bslib_
). Here's the command to install bslib under the bslib
alias using the ropm CLI.
ropm install bslib@npm:@rokucommunity/bslib
npm aliases only work in NodeJS version 12 and above. If you're using a NodeJS version less than 12, you will need to install @rokucommunity/bslib directly without the alias. BrighterScript recognizes this pattern as well, it's just not preferred (for the reasons mentioned previously). Here's the command for that:
ropm install @rokucommunity/bslib
This project also contributes a class that aligns with Microsoft's Language Server Protocol, which makes it easy to integrate BrightScript
and BrighterScript
with any IDE that supports the protocol. We won't go into more detail here, but you can use the LanguageServer
class from this project to integrate into your IDE. The vscode-BrightScript-language extension uses this LanguageServer class to bring BrightScript
and BrighterScript
language support to Visual Studio Code.
Click here to view the changelog.
Special thanks to the brs project for its fantastic work on its blazing fast BrightScript parser which was used as the foundation for the BrighterScript parser.