CSharpToJavaScript 0.0.4

Additional Details

Use .Net 8 version(0.0.06+).
.Net 7 versions will soon be unlisted.

There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package CSharpToJavaScript --version 0.0.4
NuGet\Install-Package CSharpToJavaScript -Version 0.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CSharpToJavaScript" Version="0.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CSharpToJavaScript --version 0.0.4
#r "nuget: CSharpToJavaScript, 0.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CSharpToJavaScript as a Cake Addin
#addin nuget:?package=CSharpToJavaScript&version=0.0.4

// Install CSharpToJavaScript as a Cake Tool
#tool nuget:?package=CSharpToJavaScript&version=0.0.4

CSharpToJavaScript

Brute forcing conversion(translation) 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)

Nuget package

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 CSharpToJavaScript.APIs.JS;

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

https://github.com/TiLied/GenDocsLib

https://github.com/TiLied/GenCSharpLib

Thanks and usings

Microsoft CodeAnalysis CSharp nuget package

MDN-content for js docs

Product 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-browser 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.7 51 5/3/2024
0.0.6 204 12/6/2023

**!Breaking Change!**
**This update is mostly for CLI and Blazor WebAssembly.**

- **Deleted method "GenerateManyAsync". Use "GenerateOneAsync" method, that accept folder path now.**
- Changed default to "filename" in "GenerateOneAsync". Now default is the name of input cs file with ".js".
- Added option to disable console colors.
- Added method "GenerateOneFromString", that accept a cs string and not a path to file. Returns StringBuilder.
- Fixed a bug where lib crashes without error when passing a file outside a solution.
- Small fixes.

**Full Changelog**: https://github.com/TiLied/CSharpToJavaScript/compare/0.0.03...0.0.04