.net開源項目整理
整理一些平時收藏和應用的開源代碼,方便自己學習和查閱
1.應用
nopcommerce,開源電商網站,開發環境asp.net mvc(未支持.net core),使用技術(autofac,ef,頁面插件等)
https://github.com/nopSolutions/nopCommerce
OrchardCMS,內容管理網站
https://github.com/OrchardCMS/Orchard(.net版本)
https://github.com/OrchardCMS/Orchard2(.net core版本)
ABP(aspnetboilerplate),提供一系列工具用於web應用創建,支持 ASP.NET Core, ASP.NET MVC & Web API,也提供了web應用的模板
https://github.com/aspnetboilerplate/aspnetboilerplate(.net core 版本,tag分支有支持.net版本的)
IdentityServer,用戶授權網站(支持openid和OAuth 2.0),可用於單點登錄和第三方授權等
https://github.com/IdentityServer/IdentityServer3(.net版本)
https://github.com/IdentityServer/IdentityServer4(.net core版本)
eShopOnContainers 微軟提供的微服務示例
https://github.com/dotnet-architecture/eShopOnContainers
PetShop 三層架構經典例子,用於新手學習,不過aspx有點過時了
https://github.com/songhhwd01/PetShop
BlogEngine.NET 博客網站,也是aspx
https://github.com/rxtur/BlogEngine.NET
2.組件
Lucene.Net 全文檢索開發組件
https://github.com/apache/lucenenet
ServiceStack 半開源,用於創建web服務
https://github.com/ServiceStack/ServiceStack
MassTransit 可用於創建基於消息的服務和應用,依賴於RabbitMQ
https://github.com/MassTransit/MassTransit
stateless 簡單的工作流開發組件,不支持在線定制工作流
https://github.com/dotnet-state-machine/stateless
Hangfire 任務調度開發利器
https://github.com/HangfireIO/Hangfire
Jwt.Net 用於生成JWT (JSON Web Token) 和JWT校驗
https://github.com/jwt-dotnet/jwt
npoi 支持office文件的讀寫
https://github.com/tonyqus/npoi
StackExchange.Redis Redis的.net客戶端
https://github.com/StackExchange/StackExchange.Redis
CacheManager 用於緩存的管理,支持Redis.Memcached,couchbase等
https://github.com/MichaCo/CacheManager
Autofac Ioc組件,用於依賴註入
https://github.com/autofac/Autofac
LightGBM 用於機器學習
https://github.com/Microsoft/LightGBM
3.框架
asp.net mvc
https://github.com/aspnet/Mvc
Nancy 類似asp.net mvc,web開發框架
https://github.com/NancyFx/Nancy
4.其他
dotnet core 主頁,提供dotnet core相關知識的索引和例子,方便快速入門
https://github.com/dotnet/core
.net源碼
https://github.com/Microsoft/referencesource
.net開源項目整理