All Projects → k3ldar → .NetCorePluginManager

k3ldar / .NetCorePluginManager

Licence: GPL-3.0 license
.Net Core Plugin Manager, extend web applications using plugin technology enabling true SOLID and DRY principles when developing applications

Programming Languages

C#
18002 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to .NetCorePluginManager

ExcelExport
Classes to generate Excel/CSV Report in ASP.NET Core
Stars: ✭ 39 (+129.41%)
Mutual labels:  asp-net-core
Joonasw.ManagedIdentityDemos
Example uses of Azure Managed Identities
Stars: ✭ 24 (+41.18%)
Mutual labels:  asp-net-core
RESTvsGRPC
Evaluating Performance of REST vs. gRPC
Stars: ✭ 36 (+111.76%)
Mutual labels:  asp-net-core
prometheus.aspnetcore
Prometheus instrumentation for .NET Core
Stars: ✭ 29 (+70.59%)
Mutual labels:  asp-net-core
CodablePersist
Store and Cache Anything Codable
Stars: ✭ 18 (+5.88%)
Mutual labels:  memory-cache
HotelListing-API-dotnet5
An Educational Web API built using .NET Core 5.0. We look at REST principles, connecting to a database, using swagger and developing custom middleware to bring out the full feature set of a .NET API.
Stars: ✭ 37 (+117.65%)
Mutual labels:  asp-net-core
ProductsStoreOnKubernetes
Demoing deployment of Docker containers into Kubernetes for both minikube and Azure AKS.
Stars: ✭ 90 (+429.41%)
Mutual labels:  asp-net-core
MusicDatabase-API
This project is able to manage your songs, artists, albums and more by RESTful API. Developed with ASP.NET Core 2.0 & EF Core and used PostgreSQL Database Provider. Implemented Swagger to project.
Stars: ✭ 18 (+5.88%)
Mutual labels:  asp-net-core
aspnet-core-vuejs-template
ASP.NET Core / Vue.js SPA Template App
Stars: ✭ 75 (+341.18%)
Mutual labels:  asp-net-core
DNZ.MvcComponents
A set of useful UI-Components (HtmlHelper) for ASP.NET Core MVC based-on Popular JavaScript Plugins (Experimental project).
Stars: ✭ 25 (+47.06%)
Mutual labels:  asp-net-core
Cake-Shop
A sample Cake Shop Website built with ASP.NET Core (Multi-Page Application)
Stars: ✭ 44 (+158.82%)
Mutual labels:  asp-net-core
AngularAspNetCoreSignalR
Build a simple chat app with Angular and ASP.NET Core SignalR
Stars: ✭ 12 (-29.41%)
Mutual labels:  asp-net-core
ApiDmS
Open Source Document Management System.
Stars: ✭ 16 (-5.88%)
Mutual labels:  asp-net-core
AspNetCore-Dynamic-Permission
Dynamic Permission Samples in ASP.NET Core and ASP.NET MVC 5.
Stars: ✭ 19 (+11.76%)
Mutual labels:  asp-net-core
memcacher
C++ implementation of Memcache Binary Protocol.
Stars: ✭ 16 (-5.88%)
Mutual labels:  memory-cache
ImageResize
Image resizing tool for .Net applications with ability to add text/image watermark, Supports animated images as well.
Stars: ✭ 45 (+164.71%)
Mutual labels:  asp-net-core
FluentAssertions.Web
FluentAssertions for HTTP APIs
Stars: ✭ 71 (+317.65%)
Mutual labels:  asp-net-core
Asp-net-Core-Project-with-Admin-Template-Setup
AdminLTE Template Setup with Asp.net Core MVC 2.1 Project
Stars: ✭ 50 (+194.12%)
Mutual labels:  asp-net-core
smart-blazor
Blazor UI Components & Examples
Stars: ✭ 32 (+88.24%)
Mutual labels:  asp-net-core
X.Web.Sitemap
Simple sitemap generator for .NET
Stars: ✭ 66 (+288.24%)
Mutual labels:  asp-net-core

.NetCorePluginManager

.Net Core Plugin Manager, extend web applications, services and normal applications using plugin technology

https://sicarterblog.wordpress.com/2018/10/02/asp-net-core-plugin-manager/

Devops

https://dev.azure.com/NetCorePluginManager/NetCorePluginManager

Live Demo

http://PluginManager.website

http://PluginManager.website/SystemAdmin/

http://PluginManager.website/Account/

http://PluginManager.website/Blog/

#Documentation

http://PluginManager.website/Docs/

if asked to login this requires the following details:

Username: admin Password: password

It only uses mock data providers and will reset periodically

Current Version

Version 4.3.0

ASPNetCore.PluginManager

Extend any website with plugin technology.

PM> Install-Package AspNetCore.PluginManager -Version 4.3.0

https://www.nuget.org/packages/AspNetCore.PluginManager/

See https://github.com/k3ldar/.NetCorePluginManager/wiki/Plugin-Manager-Setup-and-Configuration for setup and configuration.

Build Prerequisites

In order to build the latest version both Visual Studio 2019 and Net Core, 2.1, 3.1 or net 5.0.

Current Plugins

There are a number of pre-built plugins which can be used in most application types, they include:

Memory Cache Plugin

Provides memory cache capability for any application or middleware.

https://www.nuget.org/packages/MemoryCache.Plugin/

See https://github.com/k3ldar/.NetCorePluginManager/wiki/Memory-Cache-Plugin for setup and configuration.

User Session Middleware

Manage user sessions within Controllers.

https://www.nuget.org/packages/UserSessionMiddleware.Plugin/

See https://github.com/k3ldar/.NetCorePluginManager/wiki/User-Session-Manager-Middleware for setup and configuration.

CacheControl

Manage cache-control headers for user defined routes. Add browser caching for static files like .js, .css and image files etc.

See https://github.com/k3ldar/.NetCorePluginManager/wiki/CacheControl-Plugin-Settings for setup and configuration.

Deny Spider

Automatically generate robots.txt file from attributes applied to conntroller classes and methods. If used in conjunction with UserSession Manager it will provide a forbidden response if a bot/spider attempts to go to a denied path.

https://www.nuget.org/packages/Spider.Plugin/

See https://github.com/k3ldar/.NetCorePluginManager/wiki/Spider-Plugin-Middleware for setup and configuration.

Restrict Ip

Automatically restricts a route to specific Ip Addresses.

https://github.com/k3ldar/.NetCorePluginManager/wiki/Restrict-Ip-Address-Plugin

Geo Ip

Integrates GeoIp services for internal use, or use with User Session Middleware

https://github.com/k3ldar/.NetCorePluginManager/wiki/Geo-Ip-Plugin

System Admin

Displays Application specific system data

Bad Egg

Nobody likes it when people don't play fair, the bad egg plugin is designed to complete 2 functions.

the first is to restrict the maximum connections per minute for an Ip Address. The second is to look at query strings and form input values, and determine whether the connection is attempting to use Sql injection techniques. This provides a "probability" and it is down to the host application to white/black list Ip addresses.

https://github.com/k3ldar/.NetCorePluginManager/wiki/Bad-Egg-Plugin

Error Manager

Manages exceptions and 404 errors, allows implementation to provide a replacement for missing pages. All other errors are notified but will not be notified again until after a timeout period, which prevents spamming on errors.

https://github.com/k3ldar/.NetCorePluginManager/wiki/Error-Manager-Plugin

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].