Questions tagged [nobackend]

noBackend is an approach to decouple apps from backends, by abstracting backend tasks with frontend code (Dreamcode). This allows frontend developers to focus on user experience and gives backend developers more flexibility on the implementation side.

noBackend is an approach to decouple apps from backends, by abstracting backend tasks with frontend code (Dreamcode). This allows frontend developers to focus on user experience and gives backend developers more flexibility on the implementation side.

It ultimately leads to backends that can be used out of the box (Solutions), empowering frontend developers to build entire apps (Examples) without thinking about backend at all.

Useful links

5 questions
3
votes
2 answers

Is it possible to send mail using only react?

I have an app that is built only using react. It does not have a backend. Is it possible to send an email just from the react front end itself? Is there an api that would allow me to do that? If this is not possible, all I really need to do is…
Parth Patel
  • 63
  • 1
  • 2
  • 5
1
vote
1 answer

No Backend error despite of downloading ffmpeg and setting path variable python

I am having a no backend error in my python code to open an audio file using librosa module. I have downloaded ffmpeg and seted environment but still I am getting no backend error. I am getting this error with .mp3 extension, with wav it is working…
1
vote
0 answers

What is with the Dreamcode idea?

The Dreamcode as described here: http://nobackend.org/dreamcode.html That developers don't have to worry about the backend when developing web applications. Is very interesting. However I have few question on building application logic in the…
quarks
  • 33,478
  • 73
  • 290
  • 513
0
votes
1 answer

Azure AD using refresh token to access access token using javascript

I am using Azure AD to fetch access token. I am using Javascript and HTML to get user logged in and on successful login I got access token and expire time. Now I am looking forward to get the renewed access token on completion of expire time, I…
0
votes
1 answer

Deployd App, dpd.collection.first() not working

I've installed latest version of Deployd on Windows 7 64 Bit. Everything works fine except, I cannot query a single object. ie, if i use the following code, var query ={"name":"Jack","empid":"10"}; dpd.employees.first(query, function (result) { …