.JUK

JUK ファイル

Juka Source Code File
質問する
クイック回答

.jukファイルは、Jukaで記述されたソースコードを保持します。Jukaは、.NETにコンパイルされるか、独自のインタープリタを介して実行される、小規模なクロスプラットフォームプログラミング言語です。プレーンテキストであるため、VS Codeなどの任意のコードエディタで読み書きできます。実際に実行するには、Jukaをインストールし、ターミナルから juka yourfile.juk を実行してください。

開発元: JukaLang カテゴリ: 開発用ファイル MIME: text/plain
対応OS Windows macOS Linux Web
関連: .DO · .MD · .HEX · .XSD

このページの内容

19k+ 個の拡張子を索引済み
最終確認日:Aug 7, 2026

ファイルの種類がわかりませんか?

ファイルを識別ツールにドロップしてください。最初の数バイトを読み取って形式を特定します。

ファイルを識別する

JUK ファイル形式とは?

.jukファイルには、Jukaで記述されたソースコードが含まれています。Jukaは、同じコードを多くのプラットフォームで実行できるように構築された、フリーでオープンソースのプログラミング言語です。ファイルはプレーンなUTF-8テキストであるため、関数やクラスの宣言、ループ、条件分岐、try/catchブロック、および printLine(«test» + 5); のような出力呼び出しなど、人間が読めるステートメントが保持されています。

Jukaは、.jlr拡張子を使用していたJuliarという以前の言語の後継です。このプロジェクトはJukaLangコミュニティによって維持されており、ソースはGitHubとCodebergで公開されています。内部的には、JukaプログラムはJukaCompilerによって処理されます。これはMicrosoftのRoslynライブラリを使用してソースを.NET中間コードに変換するか、インタープリタを介して直接実行する.NETコンポーネントです。.jukファイルに遭遇する人の多くは、この言語を試している開発者や、そのリポジトリで作業している開発者です。

セキュリティと安全性

リスク: MEDIUM

A .juk file is plain-text source code and cannot execute on its own by being opened in an editor. The risk is in running it: Juka code compiled or interpreted through the Juka runtime can perform any action the language allows, so treat files from untrusted sources like any other unreviewed script and read the code before running it.

形式の詳細

概要
正式名称Juka Source Code File別名 Juka source file, Juka script
開発元JukaLang登場時期 2020
MIME タイプtext/plain
タイプPlain-text source code
この拡張子は以下でも使用されています…
  • KDE JuK music manager - JuK is a KDE audio jukebox and music player. It manages libraries and playlists but does not use a .juk data file; the name is unrelated to the Juka language.
  • JUKU BASIC - A BASIC-like language for the JUKU computer exists as a hobby project; unrelated to Juka and not the dominant meaning of the .juk extension.

JUK ファイルを開くプログラム

Windows3 apps
Notepad オープンソース Open the .juk file to view or edit the raw Juka source code.
Juka (juka CLI) オープンソース Download the Juka release binary, then run juka yourfile.juk in a terminal to execute the file, or launch juka alone for the interactive REPL.
Visual Studio Code 無料 Open the .juk file to read and edit the source as plain text with syntax highlighting from a generic language mode.
macOS2 apps
Juka (juka CLI) オープンソース Install Juka and .NET, then run ./juka yourfile.juk from Terminal to compile and run the file.
Visual Studio Code 無料 Open the .juk file to read and edit the Juka source in a code editor.
Linux3 apps
Juka (juka CLI) オープンソース Install the .NET runtime and Juka, then run ./juka yourfile.juk to execute the source, or ./juka for the REPL.
JukaCompiler (NuGet library) オープンソース Reference the library in a C# project and call new JukaCompiler.Compiler().JukaCompile(fileName, (isFile: true)); to compile a .juk file programmatically.
Any text editor (nano, vim, gedit) オープンソース Open the .juk file to inspect or edit the plain-text source.
Web1 app
Juka Jupyter kernel オープンソース Install the Juka kernel for Jupyter/JupyterLab to run Juka code cells and load .juk snippets in a notebook.

技術的詳細

詳細仕様
EncodingUTF-8 / ASCII plain text
Byte orderNot applicable (text)
ContainerNone (flat text file)
Typical sizeUnder 100 KB for a single source module
StructureHuman-readable Juka source code: function and class declarations, variable assignments, loops (for/while), conditionals, try/catch blocks, and calls such as printLine(). Statements terminate with a semicolon.
IntegrityNone built in
PlatformsWindows, macOS, Linux, FreeBSD, Android
Initial Release Full2020 (evolved from the earlier Juliar language, .jlr)
NotesJuka source is compiled by JukaCompiler, which uses the Microsoft.CodeAnalysis (Roslyn) libraries to emit .NET intermediate code, or run directly through the Juka interpreter/REPL. The compiler targets .NET 8 and is distributed on NuGet as JukaCompiler.
Language ParadigmGeneral-purpose, imperative with functions and classes
Runtime.NET 8 (cross-platform)
リリース日2020
最新バージョンRolling release (JukaCompiler 0.0.x on NuGet)
仕様書codeberg.org

JUK の変換

コミュニティ Q&A

ユーザーからの質問
質問する
JUK ファイルを扱うユーザーからヘルプを得られます。OSやソフトウェアのバージョンなど、具体的に記載してください。
アカウント不要 ・ 通常1日以内に回答されます

まだ質問はありません。JUK ファイルについて最初の質問をしてみましょう。

よくある質問

.jukファイルとは何ですか?
これは、フリーのクロスプラットフォームプログラミング言語であるJukaで書かれたソースコードファイルです。ファイルは、関数定義、ループ、printLine()呼び出しなどのJukaステートメントを含むプレーンテキストです。
.jukファイルはどうやって開きますか?
任意のテキストエディタやコードエディタ(VS Code、Notepad++、vim)で開いて、閲覧や編集が可能です。実行するには、Jukaをインストールしてターミナルで juka yourfile.juk を実行します。
.jukプログラムはどうやって実行しますか?
お使いのOS用のJukaリリースをダウンロードし、.NETがインストールされていることを確認してから、./juka yourfile.juk を実行してください。引数なしで juka を実行すると、代わりに対話型REPLが開きます。
JukaはJuliarと同じものですか?
JukaはJuliar言語の後継です。Juliarは .jlr 拡張子を使用していましたが、プロジェクト名がJukaに変更され、新しいソースファイルは .juk を使用します。
.jukファイルを開いても安全ですか?
テキストエディタで開くのは、単なるテキストなので安全です。Jukaランタイムを介して実行する場合のみコードが実行されるため、なじみのないファイルは実行前に内容を確認してください。
.jukファイルをアプリにできますか?
はい。Jukaは.NETにコンパイルされるため、プログラムをWindowsの .exe.dll アセンブリにビルドできます。また、モバイルプラットフォーム向けにラップするJukaアプリも存在します。

参考文献

1Juka source repository (Codeberg)codeberg.org
2JukaCompiler on NuGetwww.nuget.org

さらに探索

データベース全体から

今週のトップ拡張子

1.AQQAQQ Instant Messenger File
2.MDMarkdown Document
3.CRDOWNLOADChrome Partial Download File
4.BINCD/DVD Disc Image (BIN/CUE)
5.PARTPartial Download File
6.RPMSGRestricted Permission Message
7.NOMEDIAAndroid No-Media Marker File
8.EXEWindows Executable (Portable Executable)
9.AVIFAV1 Image File Format (AVIF)
10.ICSiCalendar data file

関連する拡張子

.DOStata Do-File
.MDMarkdown Document
.HEXIntel HEX File
.XSDXML Schema Definition
.MAPSource Map (JavaScript / CSS)
.CONFIGConfiguration File

無料ファイルツール

ブラウザで動作するファイル識別および画像変換ツール。すべてお使いのデバイス上で実行されます。

ツールボックスを開く

ファイル拡張子を A-Z で閲覧