Currently converting from .Net to .Net core
Ask HN: What frameworks are currently used in a modern web stack?
71–80 of 125 posts
Re: Ask HN: What frameworks are currently used in a modern web stack?
#72Earlier quoted context omitted.
I'm excited about the future of .net core on linux but I'm waiting to hear some success stories. Have you built something significant with it you can point to? This is not snark - I'd really love to hear about it.
I've spent at least the last 10 years (including Uni days) writing mostly Java or .NET in some form or other. I don't mind Java, I generally like using Java 8, but I would happily be writing C# instead if I could run it as easy in as many places. The syntactic sugar, Linq, the latest MVC framework, etc- are generally much faster to get moving in and don't require the configuration hell you can run into w/ Java. Howev…
If you're talking about Ant, Maven, Tomcat, etc for Java deployment, it's been about 5 years since I've had to use that, but I'd say Octopus is a much better process than that.
Re: Ask HN: What frameworks are currently used in a modern web stack?
#73Currently converting from .Net to .Net core
There are just far too many better choices out there (Elixir, Phoenix) for me to ever consider going back to Microsoft technologies. I still haven't forgotten their ASP.Net MVC framework that nearly made me give up being a developer.
Re: Ask HN: What frameworks are currently used in a modern web stack?
#74Earlier quoted context omitted.
I'm in the middle of a project that uses.NET Core. It's been great so far but Microsoft is in the middle of changing the tooling for it, which is a major pain point right now. They are essentially changing the project file format that defines dependencies and build options, and SDK tools and IDEs don't all support both formats yet. .NET Core has almost all of the features of the full .NET framework and C# is a pleasu…
Do you experience any obstacles with data providers implementation in .NET Core? I heard that they ported SQLDataProvider only.
I think that PostgreSQL has a similar open source story. There's `Npgsql` for a driver and `Npgsql.EntityFrameworkCore.PostgreSQL` for the Entity Framework implementation.
It took some work, but I like that Entity Framework Core allows for it's implementations to be done by the Open Source community. In MySQL's case, we've added lots of MySQL-specific optimizations to the Entity Framework implementation after getting feedback from the community. The new open Microsoft development approach here is great.
Re: Ask HN: What frameworks are currently used in a modern web stack?
#75Earlier quoted context omitted.
I'm excited about the future of .net core on linux but I'm waiting to hear some success stories. Have you built something significant with it you can point to? This is not snark - I'd really love to hear about it.
I've spent at least the last 10 years (including Uni days) writing mostly Java or .NET in some form or other. I don't mind Java, I generally like using Java 8, but I would happily be writing C# instead if I could run it as easy in as many places. The syntactic sugar, Linq, the latest MVC framework, etc- are generally much faster to get moving in and don't require the configuration hell you can run into w/ Java. Howev…
Re: Ask HN: What frameworks are currently used in a modern web stack?
#76Just bought "Getting Mean with...", which describes a MongoDb, Express, Angular and Node stack. (IMHO) However, first of all, the book is a waste of time and angular sucks.
So in the end, I'm planning my upcoming project using Node, Express, CouchDB and plain ol' static pages with a slice of ECMAScript (yah... I admit, Bootstrap and jQuery will join the party).
Re: Ask HN: What frameworks are currently used in a modern web stack?
#77I'm using LAMoPy - Linux, Apache, Mongo, Python (flask) I don't buy into the whole Node.js thing, I much prefer the stability and maturity of apache. Mongo just because it's easy to use with python, and python because I love it <3
Re: Ask HN: What frameworks are currently used in a modern web stack?
#78The application itself is hosted on a VPS running Arch Linux, behind nginx, and uses Postgres with PostGIS for a database.
Re: Ask HN: What frameworks are currently used in a modern web stack?
#79No love for Django? Django/Postgres
In all seriousness, Django Channels looks to be a very good offering to compete with the async real time capabilities Go/Elixir/Node bring to the table.
Re: Ask HN: What frameworks are currently used in a modern web stack?
#80Ruby on Rails or Node.js for the backend (API) and React for the front end. Rails is excellent for database migrations. Postgresql / MongoDb / Firebase for the database, depending on requirements.
Sails.js is a framework. You could argue that Express is. But Node itself if not.