What language/framework would be suitable for a new lightweight API project?
1–10 of 30 posts
Re: What language/framework would be suitable for a new lightweight API project?
#2Re: What language/framework would be suitable for a new lightweight API project?
#3use php
Re: What language/framework would be suitable for a new lightweight API project?
#4Re: What language/framework would be suitable for a new lightweight API project?
#5If you're just using HTTP auth then try Sinatra. You could probably whip up something viable in 50 lines.
Re: What language/framework would be suitable for a new lightweight API project?
#6If nothing else you'll be introduced to a lot of programming concepts you'd otherwise be unlikely to see.
Re: What language/framework would be suitable for a new lightweight API project?
#7use php
Can you elaborate?
Re: What language/framework would be suitable for a new lightweight API project?
#8Re: What language/framework would be suitable for a new lightweight API project?
#9However if you wanna play with languages you're less familiar with, I'd recommend Go, or Node.js.
Personally I find Go really interesting as it's quite different from the languages I normally work in, and it's concurrency model makes it performant without being a mindfuck.
Node.js is interesting as it's Javascript, but extremely I/O performant due to it's evented nature, but that also makes concurrency a bit of a mindfuck at times.
Those are my suggestions at least if you're itching to get your toes wet in some new fun languages :)
Re: What language/framework would be suitable for a new lightweight API project?
#10Flask is the way to go.