Live data from Hacker News

Ask HN: What frameworks are currently used in a modern web stack?

news.ycombinator.com

91–100 of 125 posts

Re: Ask HN: What frameworks are currently used in a modern web stack?

#91

The hipster stack is an interesting one. Elixir + Phoenix framework, GraphQL, React. Honestly, though, I'm doing everything with GraphQL now. It is a huge benefit for all aspects of application stack design now.

Do you have any example projects or resources you used for getting everything working together nicely? I have tinkered with that setup a bit but haven't come up with something I love yet.

Re: Ask HN: What frameworks are currently used in a modern web stack?

#92
post #44

The current stack I work with: Gulp for task (test/build/etc.) Webpack for bundeling React/Redux for the front-end Bootstrap for the styling Koa for the back-end Socket.IO for the realtime stuff RethinkDB as the datastore Nginx as the reverse proxy to the API and static file server What would I change in the future? Getting rid of Gulp, most of the time Make should be enough. Replacing Redux, Socket.IO and Koa with t…

apollo-server plugs into Koa, so no need to replace Koa.

Re: Ask HN: What frameworks are currently used in a modern web stack?

#94

Earlier quoted context omitted.

I used Laravel for some projects that deal a few users. Where I work, we are reviewing different stacks for a project that will deal with a bigger quantity of users and I would really like to use Laravel, does Laravel have some performance issues or similar stuff when dealing with lot of users?

Thanks for the feedback, I will test Lumen

Try out slim 3!

Re: Ask HN: What frameworks are currently used in a modern web stack?

#95
post #83
post #60

Earlier quoted context omitted.

Sarcasm and satire are very powerful weapons in the persuasive writer's arsenal.

Sure they are, Bucko. Sure they are.

This account has been posting mostly unsubstantive comments, and we do ban accounts that continue on like this.

https://news.ycombinator.com/newsguidelines.html

Re: Ask HN: What frameworks are currently used in a modern web stack?

#96

The hipster stack is an interesting one. Elixir + Phoenix framework, GraphQL, React. Honestly, though, I'm doing everything with GraphQL now. It is a huge benefit for all aspects of application stack design now.

there is an idea for a joke-site slash kafkaesque sadomasochistic torture challenge generator. Hipster Stack Generator.

>Phoenix Absinthe Vue.js TypeScript Apollo Ethereum

Re: Ask HN: What frameworks are currently used in a modern web stack?

#97

The hipster stack is an interesting one. Elixir + Phoenix framework, GraphQL, React. Honestly, though, I'm doing everything with GraphQL now. It is a huge benefit for all aspects of application stack design now.

Did GraphQL fix the authorization problems? Locking resources and attributes to authorised users?

No more than HTTP or SQL fixes these problems on their own.

Re: Ask HN: What frameworks are currently used in a modern web stack?

#98
post #52
post #26

No love for Django? Django/Postgres

I used Django a few years back for a large project that involved facility management. It was a breeze to work with. The Django Admin functionality alone saved us weeks of work. That was version with 1.3! I wonder what the current state of the framework is. I need to get back into writing Python and using Django

Admin is the killer feature of Django.

A close second is the world's easiest ORM.

Re: Ask HN: What frameworks are currently used in a modern web stack?

#99

The hipster stack is an interesting one. Elixir + Phoenix framework, GraphQL, React. Honestly, though, I'm doing everything with GraphQL now. It is a huge benefit for all aspects of application stack design now.

Did GraphQL fix the authorization problems? Locking resources and attributes to authorised users?

I do auth with a simple Ajax form and make all of my graphql calls take an auth header. Auth is really somewhat orthogonal to graphql. You can do it with graphql or not, up to you.

Re: Ask HN: What frameworks are currently used in a modern web stack?

#100
I am building my side project, Email This [0] with Elixir and Phoenix. Not using any JavaScript framework here, but I've dabbled a bit with React and Vue.js.

Rails (Ruby) and Laravel (PHP) are some of the other solid options for building the backend.

[0] https://www.emailthis.me

Post reply on HN