CSharpToJavaScript 0.0.5
dotnet add package CSharpToJavaScript --version 0.0.5
NuGet\Install-Package CSharpToJavaScript -Version 0.0.5
<PackageReference Include="CSharpToJavaScript" Version="0.0.5" />
paket add CSharpToJavaScript --version 0.0.5
#r "nuget: CSharpToJavaScript, 0.0.5"
// Install CSharpToJavaScript as a Cake Addin
#addin nuget:?package=CSharpToJavaScript&version=0.0.5
// Install CSharpToJavaScript as a Cake Tool
#tool nuget:?package=CSharpToJavaScript&version=0.0.5
CSharpToJavaScript
Brute forcing conversion(generating) from C# to Javascript.
This is a personal project with purpose to learn and understand better c# and js at the same time. Many stuff is not supported and some won't. Updates will be happening when I'm using this library.(irregular)
C#
namespace ConsoleAppTest.CSharp;
public class Test
{
public Test()
{
Console.WriteLine("HelloWorld!");
}
}
Javascript
class Test
{
constructor()
{
console.log("HelloWorld!");
}
}
How to use
- 1 Create c# project or use existed one.
- 2 Install nuget package or Download a specific version(visit releases) or Download a master(Code-Local-Download ZIP).
- 3 Skip this if using Nuget package. Follow this to add reference to the project.
- 4 In the Main method add:
CSTOJS cstojs = new();
await cstojs.GenerateOneAsync("FULL PATH TO CSHARP FILE YOU WHAT TO CONVERT");
- 5 Run program and file will be generated in output path(default is "Directory.GetCurrentDirectory()") with name "|CS FILE NAME|.js"(default)
- 6 See below for simple example "HelloWorld"
Example "HelloWorld"
Program.cs
using CSharpToJavaScript;
namespace ConsoleAppTest;
public class Program
{
public static async Task Main()
{
CSTOJS cstojs = new();
await cstojs.GenerateOneAsync("C:\\GitReps\\ConsoleAppTest\\CSharp\\Test.cs");
Console.ReadKey();
}
}
CSharp/Test.cs
using static CSharpToJavaScript.APIs.JS.GlobalObject;
namespace ConsoleAppTest.CSharp;
public class Test
{
public Test()
{
GlobalThis.Console.Log("HelloWorld!");
}
}
Above code will generate "Test.js" file that contains:
class Test
{
constructor()
{
globalThis.console.log("HelloWorld!");
}
}
More examples here. WIP!
Some Todos
- ~More comments in code, especially in CSTOJSOptions~
- Wiki?????
- ~Better and more examples~ Here. WIP!
- ~Figure out how to do docs for api~ Docs WIP!
- ~CLI?~ Here
- Visual Studio extension?
- Visual Studio Code extension??? Can I?
Related Repository
- Library for generating docs: https://github.com/TiLied/GenDocsLib
- Library for generating csharp: https://github.com/TiLied/GenCSharpLib
CLI for library: https://github.com/TiLied/CSTOJS_CLI
Website/documentation: https://github.com/TiLied/CSTOJS_Pages
- Blazor WebAssembly: https://github.com/TiLied/CSTOJS_BWA
Thanks for packages and content ❤️
Microsoft CodeAnalysis CSharp nuget package
MDN-content for js docs
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- Microsoft.CodeAnalysis.CSharp (>= 4.7.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
**!Breaking Change!**
**This update is mostly for CLI, Blazor WebAssembly and Extensions.**
- **Changed "GenerateOneFromStringAsync" to "GenerateOneFromString".**
- Deleted creation of debug.txt when Debug is enabled. Console output is enough.
- Added default references to the compilation.
- Added option "DisableConsoleOutput".
- Added detection for get only, auto implemented properties.
- Improved formatting and detection of the auto implemented properties.
- Small fixes.
**Full Changelog**: https://github.com/TiLied/CSharpToJavaScript/compare/0.0.04...0.0.05