Downloads:
3,375
Downloads of v 1.38.0:
14
Last Update:
08 Jan 2025
Package Maintainer(s):
Software Author(s):
- Johnny Morganz
Tags:
luau-lsp luau oss language-server roblox foss lsp- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Luau Language Server
- 1
- 2
- 3
1.38.0 | Updated: 08 Jan 2025
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
3,375
Downloads of v 1.38.0:
14
Maintainer(s):
Software Author(s):
- Johnny Morganz
Luau Language Server 1.38.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Johnny Morganz. The inclusion of Johnny Morganz trademark(s), if any, upon this webpage is solely to identify Johnny Morganz goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Luau Language Server, run the following command from the command line or from PowerShell:
To upgrade Luau Language Server, run the following command from the command line or from PowerShell:
To uninstall Luau Language Server, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download luau-lsp --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade luau-lsp -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade luau-lsp -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install luau-lsp
win_chocolatey:
name: luau-lsp
version: '1.38.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'luau-lsp' do
action :install
source 'INTERNAL REPO URL'
version '1.38.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller luau-lsp
{
Name = "luau-lsp"
Version = "1.38.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'luau-lsp':
ensure => '1.38.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 09 Jan 2025.
An implementation of a language server for the Luau programming language.
Getting Started
Install the extension from the VSCode Marketplace or OpenVSX Registry:
- VSCode Marketplace: https://marketplace.visualstudio.com/items?itemName=JohnnyMorganz.luau-lsp
- OpenVSX Registry: https://open-vsx.org/extension/JohnnyMorganz/luau-lsp
Alternatively, checkout Getting Started for Language Server Clients
to setup your own client for a different editor
For General Users
The language server should be immediately usable for general Luau code after installation.
String require support is provided for module paths, using require("module")
.
There are two options for resolving requires, which can be configured using luau-lsp.require.mode
:
relativeToWorkspaceRoot
(the default - equivalent to the command-line REPL luau
)
or relativeToFile
.
Type definitions can be provided by configuring luau-lsp.types.definitionFiles
, with corresponding
documentation added using luau-lsp.types.documentationFiles
.
If you use Luau in a different environment and are interested in using the language server, or
looking for any specific features, please get in touch!
For Rojo Users
Rojo instance tree and requiring support is provided by default, and the language server should be able to directly emulate Studio.
The extension will automatically populate the latest API types and documentation (which can be disabled by configuring luau-lsp.types.roblox
).
To resolve your instance tree and provide module resolution, the language server uses Rojo-style sourcemaps.
The language server will automatically create a sourcemap.json
in your workspace root on startup and whenever files are added/created/renamed.
It does this by running the rojo sourcemap
command, hence Rojo 7.1.0+ must be available to execute in your workspace root.
It is recommend to .gitignore
the sourcemap.json
file. In future, the language server will generate the file internally.
Note, if you are using the VSCode extension on macOS, you need to configure the location of the Rojo binary at luau-lsp.sourcemap.rojoPath
.
By default we generate a sourcemap for a default.project.json
project file. The name can be changed in extension settings, as well as whether non-script instances are included in the sourcemap (included by default). Autogeneration of sourcemaps can also be toggled completely on/off in settings - the server will instead just listen to manual changes to sourcemap.json
files.
If you do not use Rojo, you can still use the Luau Language Server, you just need to manually generate a sourcemap.json
file for your particular project layout.
> Note: in the diagnostics type checker, the types for DataModel (DM) instances will resolve to any
. This is a current limitation to reduce false positives.
> However, autocomplete and hover intellisense will correctly resolve the DM type.
> To enable this mode for diagnostics, set luau-lsp.diagnostics.strictDatamodelTypes
(off by default).
> Read more.
A companion Studio plugin is available to provide DataModel information for Instances which are not part of your Rojo build / filetree: Plugin Marketplace
Standalone
The tool can run standalone, similar to luau-analyze
, to provide type and lint warnings in CI, with full Rojo resolution and API types support.
The entry point for the analysis tool is luau-lsp analyze
.
Install the binary and run luau-lsp --help
for more information.
From: https://github.com/JohnnyMorganz/luau-lsp/blob/1.38.0/LICENSE.md
LICENSE
MIT License
Copyright (c) 2022 JohnnyMorganz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Go to https://github.com/JohnnyMorganz/luau-lsp/releases/tag/1.38.0, and download from there.
x86_64: https://github.com/JohnnyMorganz/luau-lsp/releases/download/1.38.0/luau-lsp-win64.zip
to download the ZIP archive and extract the executables. You may wish to rename one of the files.
2. You can use one of the following methods to obtain the SHA512 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum-x86_64: 6400270b81472d27ea576355b6cd3d3896e6e9b7369a8ccb597508332a7125113cf627bb1738e7437eea421eab367d2bd89132fac129e91459511bc572c9d89b
File 'LICENSE.txt' obtained from:
https://github.com/JohnnyMorganz/luau-lsp/blob/1.38.0/LICENSE.md
md5: 8315BC1D3FD2182C7086DC0AF4853760 | sha1: A8F6013590D21AF66E837EF44A5C31FB219F0698 | sha256: 4D4172B5135C56975401F49F4C83FE33CD4535C657CFDE1B90E4F6CCD41A8379 | sha512: 39C303D38852159FBD805765E1BCDAD8098A74FE5DBA1CE7E121B039E4F9E6F2FC50DF1D904190804E376ECFEEFE26B6242893D34B316060EE17DA1A68965048
Log in or click on link to see number of positives.
- luau-lsp.1.38.0.nupkg (e0120767e224) - ## / 66
- luau-lsp.exe (4d4172b5135c) - ## / 71
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Luau Language Server 1.38.0 | 14 | Wednesday, January 8, 2025 | Approved | |
Luau Language Server 1.37.0 | 9 | Tuesday, January 7, 2025 | Approved | |
Luau Language Server 1.36.0 | 21 | Wednesday, December 11, 2024 | Approved | |
Luau Language Server 1.35.0 | 21 | Tuesday, December 10, 2024 | Approved | |
Luau Language Server 1.34.0 | 17 | Wednesday, November 20, 2024 | Approved | |
Luau Language Server 1.33.1 | 20 | Thursday, November 14, 2024 | Approved | |
Luau Language Server 1.33.0 | 23 | Wednesday, October 16, 2024 | Approved | |
Luau Language Server 1.32.4 | 21 | Saturday, October 12, 2024 | Approved | |
Luau Language Server 1.32.3 | 28 | Friday, September 20, 2024 | Approved | |
Luau Language Server 1.32.2 | 25 | Wednesday, August 21, 2024 | Approved | |
Luau Language Server 1.32.1 | 24 | Monday, August 12, 2024 | Approved | |
Luau Language Server 1.32.0 | 27 | Saturday, August 10, 2024 | Approved | |
Luau Language Server 1.31.1 | 26 | Wednesday, August 7, 2024 | Approved | |
Luau Language Server 1.31.0 | 35 | Tuesday, July 16, 2024 | Approved | |
Luau Language Server 1.30.1 | 26 | Monday, July 15, 2024 | Approved | |
Luau Language Server 1.30.0 | 25 | Monday, July 8, 2024 | Approved | |
Luau Language Server 1.29.1 | 26 | Wednesday, July 3, 2024 | Approved | |
Luau Language Server 1.29.0 | 55 | Saturday, June 8, 2024 | Approved | |
Luau Language Server 1.28.1 | 44 | Saturday, March 16, 2024 | Approved | |
Luau Language Server 1.28.0 | 33 | Thursday, March 7, 2024 | Approved | |
Luau Language Server 1.27.1 | 34 | Wednesday, February 14, 2024 | Approved | |
Luau Language Server 1.27.0 | 46 | Tuesday, January 2, 2024 | Approved | |
Luau Language Server 1.26.0 | 44 | Saturday, November 25, 2023 | Approved | |
Luau Language Server 1.25.0 | 46 | Monday, October 23, 2023 | Approved | |
Luau Language Server 1.24.1 | 43 | Friday, October 20, 2023 | Approved | |
Luau Language Server 1.24.0 | 37 | Friday, October 13, 2023 | Approved | |
Luau Language Server 1.23.0 | 38 | Wednesday, October 11, 2023 | Approved | |
Luau Language Server 1.22.1 | 37 | Wednesday, October 11, 2023 | Approved | |
Luau Language Server 1.22.0 | 41 | Sunday, October 8, 2023 | Approved | |
Luau Language Server 1.21.0 | 39 | Sunday, October 8, 2023 | Approved | |
Luau Language Server 1.20.2 | 37 | Friday, October 6, 2023 | Approved | |
Luau Language Server 1.20.1 | 44 | Thursday, October 5, 2023 | Approved | |
Luau Language Server 1.20.0 | 42 | Tuesday, October 3, 2023 | Approved | |
Luau Language Server 1.19.2 | 42 | Monday, October 2, 2023 | Approved | |
Luau Language Server 1.19.1 | 43 | Saturday, September 30, 2023 | Approved | |
Luau Language Server 1.19.0 | 42 | Friday, September 29, 2023 | Approved | |
Luau Language Server 1.18.1 | 42 | Thursday, September 28, 2023 | Approved | |
Luau Language Server 1.18.0 | 43 | Tuesday, September 26, 2023 | Approved | |
Luau Language Server 1.17.1 | 37 | Monday, September 25, 2023 | Approved | |
Luau Language Server 1.17.0 | 38 | Sunday, September 24, 2023 | Approved | |
Luau Language Server 1.16.4 | 49 | Saturday, September 23, 2023 | Approved | |
Luau Language Server 1.16.3 | 41 | Friday, September 22, 2023 | Approved | |
Luau Language Server 1.16.2 | 41 | Monday, September 18, 2023 | Approved | |
Luau Language Server 1.16.1 | 41 | Monday, September 18, 2023 | Approved | |
Luau Language Server 1.16.0 | 43 | Saturday, September 16, 2023 | Approved | |
Luau Language Server 1.15.0 | 94 | Friday, September 15, 2023 | Approved | |
Luau Language Server 1.14.3 | 38 | Wednesday, September 13, 2023 | Approved | |
Luau Language Server 1.14.2 | 41 | Tuesday, September 12, 2023 | Approved | |
Luau Language Server 1.14.1 | 41 | Monday, September 11, 2023 | Approved | |
Luau Language Server 1.14.0 | 43 | Friday, September 8, 2023 | Approved | |
Luau Language Server 1.13.1 | 45 | Thursday, September 7, 2023 | Approved | |
Luau Language Server 1.13.0 | 44 | Thursday, September 7, 2023 | Approved | |
Luau Language Server 1.12.1 | 51 | Monday, September 4, 2023 | Approved | |
Luau Language Server 1.12.0 | 45 | Sunday, September 3, 2023 | Approved | |
Luau Language Server 1.11.2 | 42 | Saturday, September 2, 2023 | Approved | |
Luau Language Server 1.11.1 | 47 | Friday, September 1, 2023 | Approved | |
Luau Language Server 1.11.0 | 45 | Friday, September 1, 2023 | Approved | |
Luau Language Server 1.10.1 | 53 | Thursday, August 31, 2023 | Approved | |
Luau Language Server 1.10.0 | 51 | Sunday, August 27, 2023 | Approved | |
Luau Language Server 1.9.2 | 49 | Friday, August 25, 2023 | Approved | |
Luau Language Server 1.9.1 | 42 | Thursday, August 24, 2023 | Approved | |
Luau Language Server 1.9.0 | 51 | Monday, August 21, 2023 | Approved | |
Luau Language Server 1.8.1 | 47 | Monday, August 21, 2023 | Approved | |
Luau Language Server 1.8.0 | 48 | Saturday, August 19, 2023 | Approved | |
Luau Language Server 1.7.1 | 50 | Wednesday, August 16, 2023 | Approved | |
Luau Language Server 1.7.0 | 47 | Wednesday, August 9, 2023 | Approved | |
Luau Language Server 1.6.0 | 47 | Saturday, August 5, 2023 | Approved | |
Luau Language Server 1.5.2 | 48 | Friday, August 4, 2023 | Approved | |
Luau Language Server 1.5.1 | 53 | Wednesday, August 2, 2023 | Approved | |
Luau Language Server 1.5.0 | 46 | Tuesday, August 1, 2023 | Approved | |
Luau Language Server 1.4.0 | 49 | Monday, July 31, 2023 | Approved | |
Luau Language Server 1.3.0 | 66 | Monday, June 5, 2023 | Approved | |
Luau Language Server 1.2.0 | 55 | Wednesday, May 31, 2023 | Approved | |
Luau Language Server 1.1.0 | 51 | Wednesday, July 19, 2023 | Approved | |
Luau Language Server 1.0.0 | 39 | Saturday, June 24, 2023 | Approved | |
Luau Language Server 0.4.1 | 48 | Monday, May 29, 2023 | Approved | |
Luau Language Server 0.4.0 | 56 | Sunday, May 28, 2023 | Approved | |
Luau Language Server 0.3.0 | 44 | Saturday, May 27, 2023 | Approved | |
Luau Language Server 0.2.0 | 52 | Saturday, May 27, 2023 | Approved | |
Luau Language Server 0.1.2 | 53 | Thursday, May 25, 2023 | Approved | |
Luau Language Server 0.1.1 | 50 | Tuesday, May 23, 2023 | Approved | |
Luau Language Server 0.1.0 | 54 | Wednesday, May 17, 2023 | Approved |
Copyright © 2022 - 2023, Johnny Morganz
[1.38.0] - 2024-12-28
Added
Auto-import requires will now show the require path in the details section rather than just "Auto-import". This will
help to disambiguate between multiple modules with the same name but at different
paths. (#593)
Added configuration
luau-lsp.inlayHints.hideHintsForErrorTypes
(default:false
) to configure whether inlay hintsshould be shown for types that resolve to an error type (#711)
Added configuration
luau-lsp.inlayHints.hideHintsForMatchingParameterNames
(default:true
) to configure whetherinlay hints are shown where a variable name matches the
parameter (#779)
Find all references of a returned function / table in a module will now return all cross-module
references (#879)
Go To Definition inside of a require call will now lead to the required file, similar to Document Link. This is useful
for editors that do not support Document Link (#612)
The recursive parameter in
game:FindFirstChild("ClassName", true)
is now supported for DataModel awareness. Werecursively find the closest descendant based on BFS (#689)
We now attach a semantic token modifier to usages of
self
in non-colon function definitions (i.e.function T.foo(self, ...)
) ifself
is the firstargument (#456)
Changed
The server no longer computes
relatedDocuments
in atextDocument/diagnostic
request unnecessarily if the clientdoes not support related documents
Go To Definition on a cross-module function reference will now only resolve to the function definition, rather than
also including the require statement
local func = require(path.to.function)
(#878).Overhauled the globbing mechanism leading to significant performance improvements in indexing, workspace diagnostics,
and auto suggest requires, removing globbing as a bottleneck. Some results in example codebases ranging from 190 to
1900 KLoC:
Initial indexing: ~3.32x to ~7.1x speedup (43.60s -> 13.12s and 9.42s ->
1.33s) (#829)
Workspace diagnostics: ~2.39x to ~4.75x speedup (164.93s -> 69.07s and 8.49s ->
1.79s)
Auto-suggest requires: ~4.77x speedup (1.15s ->
0.24s) (#749)
These improvements heavily depend on the amount of code you have matching ignore globs. Workspace diagnostics
improvements depends on the performance of Luau typechecking.
Fixed
Fixed isIgnoredFile check failing due to mismatching case of drive letter on Windows (#752)
Fixed
luau-lsp analyze --ignore GLOB
not ignoring files matching the glob if the files are within one of theprovided directories (#788)
Fixed production VSCode extension failing to find server binary when debugging another VSCode extension (#644)
The Studio Plugin settings configuration is now stored in TestService instead of AnalyticsService to allow it to persist across sessions (#738)
The Studio Plugin now correctly sends updates to the language server when an instance changes name or ancestry hierarchy (#636)
Fixed Studio Plugin leaking Instance connections after disconnecting from server
New Contributors
- @kineticwallet made their first contribution in https://github.com/JohnnyMorganz/luau-lsp/pull/872
Full Changelog: https://github.com/JohnnyMorganz/luau-lsp/compare/1.37.0...1.38.0
This package has no dependencies.
Ground Rules:
- This discussion is only about Luau Language Server and the Luau Language Server package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Luau Language Server, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.