https://github.com/data-miner00/delvissoligt
The Ultimate .NET Core MVC Template without heavy lib codes!
https://github.com/data-miner00/delvissoligt
csharp dotnet esbuild javascript jquery lodash mvc pnpm-workspace razor-pages selenium tailwindcss typescript
Last synced: 3 months ago
JSON representation
The Ultimate .NET Core MVC Template without heavy lib codes!
- Host: GitHub
- URL: https://github.com/data-miner00/delvissoligt
- Owner: data-miner00
- License: gpl-3.0
- Created: 2023-09-15T14:15:50.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-23T14:31:20.000Z (over 2 years ago)
- Last Synced: 2025-09-11T10:13:17.242Z (10 months ago)
- Topics: csharp, dotnet, esbuild, javascript, jquery, lodash, mvc, pnpm-workspace, razor-pages, selenium, tailwindcss, typescript
- Language: HTML
- Homepage:
- Size: 167 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Contributors][contributors-shield]][contributors-url]
[![Forks][forks-shield]][forks-url]
[![Stargazers][stars-shield]][stars-url]
[![Issues][issues-shield]][issues-url]
[![MIT License][license-shield]][license-url]
Delvis Soligt
The Ultimate .NET Core MVC Template without heavy lib codes!
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
## About The Project

A lightweight template for building .NET Core MVC applications with a full JavaScript ecosystem available.
Incentives:
- Wanted to have a more lightweight, versatile .NET Core MVC template
- Don't want to use the original MVC template
- Want to use TailwindCSS
- Buitl this MVC template so I can use it for other projects.
Of course, no one template will serve all projects since your needs may be different. So I'll be adding more in the near future. You may also suggest changes by forking this repo and creating a pull request or opening an issue. Thanks to all the people who have contributed to expanding this template!
### Built With
The technologies and tools used within this template.
- .NET MVC
- C#/Razor
- Esbuild
- JavaScript
- TypeScript
- TailwindCSS
- Selenium (Need regularly update Chrome driver NuGet)
- xUnit
### Design
.NET MVC is a server-side web application framework. The official MVC template from Microsoft comes with a huge JavaScript and BootStrap library which I think it is cumbersome to maintain. I swapped the library with Node and npm build tools, in this case, esbuild to perform code splitting and bundling. It also supports transpilation from TypeScript to JavaScript and this makes the codebase more versatile and lightweight. Additionally, I can use TailwindCSS to style the web UIs which is extremely handy.
## Getting Started
### Prerequisites
The list of tools that are used when development.
- npm
```sh
npm install npm@latest -g
```
- Pnpm
```sh
npm i -g pnpm
```
- [Git](https://git-scm.com/downloads)
- [.NET CLI](https://dotnet.microsoft.com/en-us/download)
### Installation
_To use this template for personal use or contribution, simply perform the following._ A total of **2 terminals** are required to get the core components of the application up and running for development.
1. Clone the repo
```sh
git clone https://github.com/data-miner00/DelvisSoligt.git
```
2. Install Node dependencies
```sh
pnpm i
```
3. Install NuGet dependencies
```sh
dotnet restore
```
4. Change directory into `DelvisSoligt.Web`
```sh
cd src/DelvisSoligt.Web
```
5. Optionally build TailwindCSS
```sh
pnpm build:css
```
6. Optionally build JavaScript from TypeScript
```sh
pnpm build:js
```
7. Watch TailwindCSS
```sh
pnpm watch:css
```
8. Start or watch MVC project
```sh
dotnet run
# or
dotnet watch
```
9. Build MVC project
```sh
dotnet build
```
## Roadmap
- [x] TypeScript integration
- [ ] Unit Test
- [ ] Mobile responsive
- [x] Working navigation
- [x] Selenium UI test
- [ ] Fix Div soup
- [ ] Add fonts
- [ ] Authorization
- [x] jQuery
See the [open issues](https://github.com/data-miner00/DelvisSoligt/issues) for a full list of proposed features (and known issues).
## Contributing
Contributions are what makes the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!
1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request
## License
Distributed under the GPL3.0 License. See `LICENSE` for more information.
## Acknowledgments
List of resources that are helpful and would like to give credit to.
- [Nextjs](https://nextjs.org/)
- [esbuild homepage](https://esbuild.github.io/)
- [.NET Documentation](https://learn.microsoft.com/en-us/dotnet/)
[contributors-shield]: https://img.shields.io/github/contributors/data-miner00/DelvisSoligt.svg?style=for-the-badge
[contributors-url]: https://github.com/data-miner00/DelvisSoligt/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/data-miner00/DelvisSoligt.svg?style=for-the-badge
[forks-url]: https://github.com/data-miner00/DelvisSoligt/network/members
[stars-shield]: https://img.shields.io/github/stars/data-miner00/DelvisSoligt.svg?style=for-the-badge
[stars-url]: https://github.com/data-miner00/DelvisSoligt/stargazers
[issues-shield]: https://img.shields.io/github/issues/data-miner00/DelvisSoligt.svg?style=for-the-badge
[issues-url]: https://github.com/data-miner00/DelvisSoligt/issues
[license-shield]: https://img.shields.io/github/license/data-miner00/DelvisSoligt.svg?style=for-the-badge
[license-url]: https://github.com/data-miner00/DelvisSoligt/blob/master/LICENSE