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:

1287 questions
0
votes
1 answer

how to set model extend in models.json?

I use new loopback, in my models.json : "customer": { "options": { "extend": "User" }, "properties": {} } But after run and explore, the customer model isn't extend user.
allfix
  • 52
  • 1
  • 5
0
votes
1 answer

MySQL many-to-many relationship in LoopBack

I'm having trouble getting LoopBack to perform a many-to-many join query. Considering the hasManyThrough example from the documentation: var Physician = ds.createModel('Physician', {name: String}); var Patient = ds.createModel('Patient', {name:…
rymac
  • 1
  • 3
0
votes
1 answer

strongloop mongodb connector hangs while loading json data

I had created a model a basic strong loop model. Then I started the strongloop project and using the explorer I tried to load the below data via explorer and the page hangs. I dont see any errors or exceptions thrown on the server. But the web page…
Arvin Gopi
  • 67
  • 1
  • 6
0
votes
3 answers

After setting up the example Loopback app, how come my StrongOps dashboard stays empty?

I followed the guidelines for installing Loopback example app, and registering to StrongOps monitoring service, like documented in the Getting Started doc Installing and registering was flawless, but now I don't see nothing happening on my StrongOps…
Pandaiolo
  • 11,165
  • 5
  • 38
  • 70
0
votes
1 answer

loopback session no method create?

When I use login function User.login({email: 'foo@bar.com', password: 'bar'}, function(err, accessToken) { console.log(err); console.log(accessToken); }) the error is TypeError: Object [Model session] has no method 'create'
0
votes
1 answer

Doesn't work on DotCloud

I trying to launch app with StrongOps on DotCloud, but information about process/app does not appear in dashboard.Locally it works fine. API-key and APP-name passed directly in the code. Also, i try to set ENV vars (SL_APP_NAME and SL_KEY), but no…
-1
votes
1 answer

Does Strongloop oracle loopback connector supports Oracle DB encryption policies?

I have an application on Loopback and Oracle 12c DB. I have enabled security package on Oracle RDBMS for channel encryption, I want to know if loopback oracle connector has some configuration which enables channel encryption from the loopback…
Dev
  • 1
  • 1
-1
votes
1 answer

how i update inbuilt model (user) in strongLoop using mongodb?

enter image description here i upload image here you can see whole folder structure.. In StrongLoop Framework there not visible User model in common/model folder so it's difficult to how i add property in user model?
-1
votes
1 answer

Strong-pm.log file is Empty

Strong-pm.log file in /var/log folder is empty. After deploying API to VM we are not able to see any logs in Strong-pm.log. Even deployment errors and others logging are not workingin Strong-pm.log. Can someone help me on this
Rahulx
  • 1
  • 2
-1
votes
2 answers

Loopback: PersistedModel.findById() gives not final instance. Methods like save() not existing

In an "afterRemote"-Hook i want to find a specific model and change an attribute: Team.afterRemote('prototype.__create__messages', function(ctx, message, next) { var Message = Team.app.models.message; // Promises.all not required, just for…
itinance
  • 11,711
  • 7
  • 58
  • 98
-1
votes
2 answers

Static page with url parameters in loopback

I would like a solution for the following problem: I have a client in angular running on gulp in this configuration I can navigate throw my page writing in my browser the following: (for example) localhost:3000/show/05-05-2017/10 I have the same…
Bruno
  • 299
  • 1
  • 7
  • 23
-1
votes
1 answer

Login fail and authorization error with REST in loopback

I am trying to create an default admin on boot by default for my loopback node.js app with cloudant as database. But every time I start the app, the login fails for the default admin created. Is there something wrong with the code due to which the…
Manoj Patra
  • 51
  • 1
  • 9
-1
votes
1 answer

Strongloop Complex Queries

I have this SQL query: SELECT cvs.overview, usr.username, usr.email, usr.id, usrd.firstname, usrd.lastname, usrd.profilepicture, usrd.hourlyrate, skill.name AS skill FROM public."Cvs" AS cvs LEFT JOIN…
-1
votes
2 answers

how to import strongloop based api into json or yaml specification

I have an API who is generarted using loopback / strongloop and its running as follows. and i want to export the the generated api into yaml or json so that i want to reuse it in another application. i m looking for swagger.json file. SO in sawgger…
Develop4Life
  • 7,581
  • 8
  • 58
  • 76
-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
  • 8,276
  • 5
  • 44
  • 36