0

I need a simple MVC framework, without jQuery extensions, hibernate, loggers, etc..

Only Model-View-Controller functions. Anyone have an idea where I can find one?

2
  • 18
    Um... ASP.NET MVC? (asp.net/mvc) Commented Jan 17, 2010 at 23:29
  • You could employ your own MVC pattern with normal WebForms. Commented Jan 17, 2010 at 23:53

7 Answers 7

18

Does the official ASP.Net MVC framework not meet your needs? It doesn't come with loggers, ORM's or anything like that. And it is extremely flexible and extensible.

Yes, by default it includes jQuery libraries in any new projects you start... but those are simple to remove, and are not part of the framework itself. There is no reliance on them.

Sign up to request clarification or add additional context in comments.

Comments

6

If you don't need jquery, then simply delete it from your ASP.NET MVC project.

Two alternative MVC frameworks would be: Vici.MVC, FubuMVC

Comments

6

Other MVC frameworks that haven't been mentioned here:

Comments

3

http://asp.net/mvc is the only ASP.NET framework I know off. It's very basic out of the box, and it's up to you what you add to it.

It allows you to add to it whatever you need and doesn't force you to use anything except the MVC design pattern and ASP.NET.

It's very simple in that all you really need to worry about is Models, Views and Controllers.

Comments

2

I second on the Vici MVC framework! Open source, easy to setup, easy to learn, lightweight, powerfull and with a good support channel through a StackExchange-based webpage.

The Vici Project comes with a lot more libraries (e.g. Vici CoolStorage = ORM) which work beautifully together.

Comments

1

Go with ASP.NET MVC. That's about as simple as it comes. If that's too complex, I'd suggest regular webforms or MVC on a different platform (like CakePHP)

Comments

0

I've designed a minimalistic MVC framework for ASP.Net named BarelyMVC. It's BSD licensed and currently at an alpha release.

It gets it's name because it's quite literally barely an MVC framework. It attempts to take all of the magic out of the equation and lets you directly control many aspects of how things work. There are no magical attributes. It consists of a simple stateless authentication system, a statically compiled view system made using T4, and a powerful Router and set of classes for handling HTTP requests. When put together it can make for very clear and easy to read/write code that you know exactly what it does. It also takes a hands off approach to architecture. When something you write doesn't mesh well with the traditional MVC architecture, it's trivial to work around that.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.