Questions tagged [backand]

Backand is a backend-as-a-service for AngularJS that provides social login, push notifications, and Ionic integration.

Backand is a Backend-as-a-Service provider focused on AngularJS Applications built on top of relational databases. Backand provides all of the features necessary for a fully functional, secure, and scalable web app, including user and role-based security, automated RESTful-based APIs, custom action triggers, portable Amazon RDS database instances, social media integration, and extensive support for server-side JavaScript code..

Details:

Backand is a Backend-as-a-Service for AngularJS applications. Starting from either an existing database or a schema specification, Backand quickly generates a RESTful API that can be hit from any application using JSON web requests. Backand also provides a library for AngularJS, allowing you to quickly tie Backand's RESTful API to your application's data services, giving you instant database backing. In addition to object management, Backand provides you with a number of features crucial to web-based applications. These includes:

  • User and Role-based Security
  • Dedicated Hosting
  • Custom server-side actions
  • Transaction-level database-triggered actions
  • Integration with Ionic for cross-platform apps
  • Server-side JavaScript execution, allowing for safe and secure third-party integration
  • A portable database, allowing you to quickly change providers
  • Real-time database communication, and web sockets
  • Scalability, both in terms of performance and data management.

To get started, sign up at Backand.com and register your application! The application dashboard contains extensive documentation on every feature available to your app. Backand also maintains an active GitHub page at https://www.github.com/backand, where you can find several tutorials and examples of how to leverage Backand as a tool to accelerate your app's development.

Links:

143 questions
2
votes
2 answers

Ionic Backand App refused connection to server on Android Device, not on emulator

I recently learned how to build a mobile application using Ionic and needed a backend so I decided to use the Backand framework. I am developing in Visual Studio and everything works great when run from the emulator, and all service calls work…
2
votes
1 answer

Backand - Add a default value, after object is created

In Backand, after I've created an object and have data for it in the database, I'd like to go back and add a default value for a field I overlooked. In the GUI, there appears to be a field for this: Objects > users (the users object I created), but…
cs_pupil
  • 2,782
  • 27
  • 39
2
votes
1 answer

How to create objects that have relationships when using Backand BaaS?

I am using Backand BaaS for my ionic app. My model consists of two tables: 1. Users 2. Trips A one-to-many relationship has been established between 'Users' and 'Trips'. 'Users' has a collection field that is a collection of 'Trips' and 'Trips' has…
Vince
  • 691
  • 1
  • 8
  • 18
2
votes
1 answer

backand : issues with user creation, deletion, update

I'm creating an app using ionic/angularjs using Backand as the backend service. I have it setup to use a MySQL database. 1) When I create a user through the SDK (version 1.8.2 from the CDN), the user shows up in Registered Users area but does not…
CourtneyR
  • 93
  • 8
2
votes
1 answer

modal - buttons not working - controller failure

I use the backand-app from ionic market. Now i try to have the login as a modal. On standard i have a login-tab, where user could do the login. But this is not really nice, so i want to do it with a modal and remove the login-tab. And now the…
Bourbon
  • 603
  • 3
  • 8
  • 17
1
vote
1 answer

socialSignup error can't signup without email

I have a problem when I try to signup to my app using Facebook, this worked until recently, the provider is 'facebook': self.socialSignup = function (provider) { return Backand.socialSignUp(provider).then(function (response) { …
1
vote
0 answers

how to do update with backand sdk in ionic2

I have 2 objects, videos and views, in a one to many relationships, videos has many views and views belongs to videos. Videos has a view field which is a collection of all the views for that particular id.   Every time a video plays, a view is…
Obed Lorisson
  • 449
  • 3
  • 8
  • 22
1
vote
1 answer

Hosting an Ionic 2 app on web server using Backand SDK and auth

I am building an app using Back& as BaaS as well as using their authentication service. The login page is the root page, it's the first to load. While it runs fine on my local machine with "ionic serve" authorization does not work when running on a…
E. Tallas
  • 23
  • 3
1
vote
1 answer

How can I keep both users tables "synchronized" using BackAnd?

I'm good with registering users, login, etc. Now I'm getting into modifying users with: this.backand.object.update('users', user.userId, user) but I can see that only my table gets modified, while I'll also need to modify the "Registered Users"…
ricricucit
  • 2,276
  • 2
  • 15
  • 19
1
vote
1 answer

App won't display all items (Ionic, Backand)

I want to make an app which displays some items, so I found the backand template (https://market.ionic.io/starters/backand-simple) and used it. I have about 40 items in my database, but the app only displays the first 20 items. my…
1
vote
1 answer

Connecting to external database from Backand

I am currently working with a feature in our Ionic/Backand app that needs to access data from an external database (RedShift Cluster). I am thinking of the best way possible to accomplish this, and since we are using Backand as our backend, I…
bolivar
  • 70
  • 4
1
vote
2 answers

backand platform: how debug server platform code localy

The documantion mention that there is a way to develop entire project localy and then upload it to back& platform for production. how can it be done? There is sample code somewhere ? thanks
pery mimon
  • 7,713
  • 6
  • 52
  • 57
1
vote
1 answer

How to connect to Facebook/Twitter/Google using Backand and Angular 2?

From the example provided by Backand in https://github.com/backand/backand-ionic2-starter I can see in the service ( https://github.com/backand/backand-ionic2-starter/blob/master/app/services/backandService.ts ): urls:{ signup:string, …
1
vote
2 answers

Backand - Add two filters to a GET request

I'm doing a GET request to /objects/items and i want to filter the request on both: [{ "fieldName": "title", "operator": "equals", "value": "someItem" }] AND [{ "fieldName": "description", "operator": "equals", "value": "someDescription" }] Is this…
qua1ity
  • 565
  • 2
  • 8
  • 27
1
vote
1 answer

Creating the Custom Verified Email Page URL & Custom Reset Password Page URL

Using Back&, I'm working on creating the "Custom Verified Email Page" & the "Custom Reset Password Page" to work with my app so that users can verify emails at signup and request password resets via email. Does anyone have an example of what these…
CourtneyR
  • 93
  • 8
1
2
3
9 10