Questions tagged [strongloop]

StrongLoop is an API tier for connecting enterprise data to devices and browsers. It includes LoopBackJS, StrongOps, and StrongNode.

LoopBackJS: Open Source API Server powered by Node.js. LoopBackJS is a Node.js powered, an open source API server with built-in mobile services like push and geolocation. These services can be accessed via iOS, Android, and HTML5 SDKs with a variety of connectors to datasources including Oracle, MySQL, and MongoDB.

StrongLoop Arc: A graphical UI for the StrongLoop API platform that complements the slc command line tools for developing APIs quickly and getting them connected to data. Arc also includes tools for building, profiling and monitoring Node.js applications.

Links:

1288 questions
-1
votes
1 answer

Can Strongloop process manager control worker processes?

Anyone know how I might use strong-pm to control a worker process, instead of a web app? I run the web app in the typical manner, via sl-pm, but I also want to run a worker process that is also part of the application. I want to deploy the web app…
Luke W
  • 6,618
  • 3
  • 38
  • 29
-1
votes
1 answer

LoopBack API - Built-in Models and Persistence

I want to build an API, using Google auth (via the loopback-component-passport) and ACL for access control. I also need to extend the standard User model, as I have some additional data fields. By default the User, AccessToken, ACL, RoleMapping and…
go4cas
  • 595
  • 1
  • 6
  • 17
-1
votes
2 answers

How to disable strongloop's API explorer swagger console

I'd like to disable the strongloop api explorer (pref as noted in docs) - not clear if this is a bug or documentation issue. Setting or replacing component config or using component-config.production as noted in the docs fails and generates an…
FilmFest
  • 1
  • 1
-1
votes
2 answers

Write globally used function

I need to write function that will be used in several places, for example, middlewares or modules. How and when can I put this function and use it? Thanks.
-1
votes
1 answer

how to access postgresql database view using strongloop

Please help in accessing postgresql database view using strongloop. im able to access table {"name": "test", "options": { "idInjection": false, "postgresql": { "schema": "public", "table": "test_data_v" } },…
divya
  • 251
  • 1
  • 3
  • 8
-1
votes
1 answer

Loopback android sdk fields are null

I have class Item which extends from Model with annotations ORMLite @DatabaseTable public class Item extends Model { @DatabaseField(id = true) public String id; @DatabaseField public String title; @DatabaseField public…
Farrux Bahodirov
  • 188
  • 2
  • 12
-1
votes
1 answer

How to add relations for built-in models in Loopback

I've questions about working with build-in models in Loopback. I need to extend my built-in model - User with custom relations. // Extend properties var properties = { }; // Extend options var options = { relations: { rooms: { …
Borisov Semen
  • 410
  • 5
  • 8
-1
votes
1 answer

Get User model in strongloop working with database

How do I move the "User" model to the database? I read the documentation on their official website, it's all about interacting with the User model on local?
cjskywalker
  • 3,235
  • 2
  • 14
  • 16
-1
votes
1 answer

What is custom asynchronous validation function in strongloop?

Can you please explain the meaning and use of validateAsync function of strongloop.enter link description here
Ashish Yadav
  • 2,355
  • 1
  • 11
  • 21
-1
votes
1 answer

Want to match user password in controller?

I'm using loopback and having model name BaseUser. I want to update user password only if user enters correct old password. But in the baseUser object their is no property for password so I can't match them. How can I match the user password.…
Sparsh Pipley
  • 301
  • 7
  • 22
-1
votes
1 answer

How to query by date in REST API

I am using loopback to generate REST API and having an Attendance table which contain the attendance record of students. Following query gives me the result as given…
Rizwan Haider
  • 155
  • 2
  • 14
-1
votes
1 answer

Clarification of Strongloop Subscription Pricing CPU versus Node Processes

Trying to figure out if Strongloop support is priced by CPU/VCPU or by the number Node.js processes? Strongloop site, https://strongloop.com/node-js/subscription-plans/ says "Subscriptions are sized by number of Node.js application…
-1
votes
2 answers

How to run coffeescript via StrongLoop controller

I'm making LoopBack application and I wonder how I can use coffeescript on serverside, so I could use slc run?
welldan97
  • 3,013
  • 2
  • 20
  • 27
-1
votes
2 answers

Deploying StrongLoop App in AWS server

I have built a strong loop app and I want to deploy in aws server. Please note that I have not purchased the Strongloop AMI but i am using a regular aws instance. My source code is in svn. When I went through the documention for deploying in aws,…
-1
votes
3 answers

How to get result with specific fields in StrongLoop?

I am currently using StrongLoop as my API backend server and Mongodb as data storage engine. Let's say there is a collection called article. It has two fields title, and content. And there are two frontend pages to display a list of articles and…
1 2 3
85
86