NetCore2Blockly 8.2024.503.745
dotnet add package NetCore2Blockly --version 8.2024.503.745
NuGet\Install-Package NetCore2Blockly -Version 8.2024.503.745
<PackageReference Include="NetCore2Blockly" Version="8.2024.503.745" />
paket add NetCore2Blockly --version 8.2024.503.745
#r "nuget: NetCore2Blockly, 8.2024.503.745"
// Install NetCore2Blockly as a Cake Addin #addin nuget:?package=NetCore2Blockly&version=8.2024.503.745 // Install NetCore2Blockly as a Cake Tool #tool nuget:?package=NetCore2Blockly&version=8.2024.503.745
NETCore2Blockly
What it does
NETCore2Blockly generates Blockly blocks for each of your controller actions.
Demo at https://ignatandrei.github.io/BlocklyAutomation/
Demo Video at https://www.youtube.com/watch?v=GptkNWjmCzk
Sample Project is TestBlocklyHtml from this repository
Contributors welcome! - please send email to <img src='email.png' height='10px' title = "please write email from image" alt='email'></img> or see issues tab.
How to install NETCore2Blockly in a .NET Core 6 WebAPI / MVC application in 2 steps + run application
Step 1:
Install https://www.nuget.org/packages/NetCore2Blockly/ by running the following command in the Package Manager Console:
Install-Package NetCore2Blockly
Step 2:
//after app.MapControllers();
app.UseBlocklyUI(app.Environment);
app.UseBlocklyAutomation();
Run application
Run the application from VS and browse to /BlocklyAutomation/ or /BlocklyAutomation/index.html
That's all !( 2 steps + run )
How to install NETCore2Blockly in a .NET Core 5 WebAPI / MVC application in 2 steps + run application
Step 1:
Install https://www.nuget.org/packages/NetCore2Blockly/ by running the following command in the Package Manager Console:
Install-Package NetCore2Blockly
Step 2:
Modify Startup.cs by adding
public void ConfigureServices(IServiceCollection services)
{
//somewhere generate the swagger
services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new OpenApiInfo { Title = "My API", Version = "v1" });
});
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
//last line
app.UseDefaultFiles();
app.UseStaticFiles();
app.UseSwagger();
app.UseBlocklyUI(env);
//code
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
endpoints.UseBlocklyAutomation();
});
}
Run application
Run the application from VS and browse to /BlocklyAutomation/ or /BlocklyAutomation/index.html
How to install NETCore2Blockly in a .NET Core 3.1 WebAPI / MVC application in 2 steps + run application
Step 1
Install-Package Swashbuckle.AspNetCore -Version 5.6.3 Install-Package NetCore2Blockly -Version 3.2022.224.16
Step 2
app.UseDefaultFiles();
app.UseStaticFiles();
app.UseSwagger();
//code
app.UseBlocklyUI(env);
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
endpoints.UseBlocklyAutomation();
});
Run application
Run the application from VS and browse to /BlocklyAutomation/ or /BlocklyAutomation/index.html
Migrating from 1
Replace
using NetCore2Blockly; ⇒ using NetCore2BlocklyNew; app.UseBlocklyUI(); ⇒ app.UseBlocklyUI(env); Delete app.UseBlockly(); ⇒ Add ⇒ endpoints.UseBlocklyAutomation();
Navigate to /blocklyAutomation
Advanced usage remote data
For Remote Swagger ( CORS activated )
TBC: create BlocklyAutomation/assets/loadAtStartup/swaggers.json
For authentication - JSON Web Tokens
See Demos from https://ignatandrei.github.io/BlocklyAutomation/
Also, it works with Active Directory enabled - see Authentication category.
For adding headers to Http requests
See https://ignatandrei.github.io/BlocklyAutomation/BlocklyAutomation/automation/loadexample/jwt
For exporting data as CSV
For exporting data as image
See https://ignatandrei.github.io/BlocklyAutomation/BlocklyAutomation/automation/loadexample/saveImage
Making a simple CRUD ( create ,read, update , delete ) application
See https://ignatandrei.github.io/BlocklyAutomation/BlocklyAutomation/automation/loadexample/NetCoreBlockly_DeleteDepartment or search for department in demos
Adding your blocks
Create BlocklyAutomation\assets\loadAtStartup\customCategories.txt
More information
Download the source code, run the TestNetCorePackage project ( in the test folder ).
Testing
Contributors ✨
Thanks goes to these wonderful people (emoji key):
If you want to contribute, that is plenty of work to be done -see issues tab .
<table> <tr> <td align="center"><a href="http://www.chestiiautomate.ro/"><img src="https://avatars1.githubusercontent.com/u/4983185?v=4" width="100px;" alt=""/><br /><sub><b>Cosmin Popescu</b></sub></a><br /><a href="https://github.com/ignatandrei/NETCoreBlockly/commits?author=cosminpopescu14" title="Code">💻</a></td> <td align="center"><a href="https://github.com/adriannasui"><img src="https://avatars3.githubusercontent.com/u/8627433?v=4" width="100px;" alt=""/><br /><sub><b>Adrian Nasui</b></sub></a><br /><a href="https://github.com/ignatandrei/NETCoreBlockly/commits?author=adriannasui" title="Documentation">📖</a></td> <td align="center"><a href="https://github.com/tudorgbiliescu"><img src="https://avatars3.githubusercontent.com/u/8693567?v=4" width="100px;" alt=""/><br /><sub><b>Tudor Iliescu</b></sub></a><br /><a href="https://github.com/ignatandrei/NETCoreBlockly/commits?author=tudorgbiliescu" title="Code">💻</a></td> <td align="center"><a href="https://github.com/robertszabobv"><img src="https://avatars0.githubusercontent.com/u/9404144?v=4" width="100px;" alt=""/><br /><sub><b>robertszabobv</b></sub></a><br /><a href="https://github.com/ignatandrei/NETCoreBlockly/commits?author=robertszabobv" title="Code">💻</a></td> <td align="center"><a href="https://github.com/NoahAndrews"><img src="https://avatars1.githubusercontent.com/u/10224994?v=4" width="100px;" alt=""/><br /><sub><b>Noah Andrews</b></sub></a><br /><a href="https://github.com/ignatandrei/NETCoreBlockly/commits?author=NoahAndrews" title="Code">💻</a></td> <td align="center"><a href="https://github.com/es-rene99"><img src="https://avatars3.githubusercontent.com/u/43294836?v=4" width="100px;" alt=""/><br /><sub><b>Rene Escalante</b></sub></a><br /><a href="https://github.com/ignatandrei/NETCoreBlockly/commits?author=es-rene99" title="Code">💻</a></td> </tr> </table>
This project follows the all-contributors specification. Contributions of any kind welcome!
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- Microsoft.AspNetCore.StaticFiles (>= 2.2.0)
- Microsoft.Extensions.FileProviders.Embedded (>= 8.0.4)
- MimeTypeMapOfficial (>= 1.0.17)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.