Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
18 views

In my database all tables have key Id. How should I join tables correctly? For example, right now I'm trying to join the Users and Companies tables like this: export class UserService<ServiceParams ...
Tomasz Wańkowicz's user avatar
0 votes
1 answer
24 views

I have created a microservice gateway with FeatherJS and I want to track usage logs. Can you please advise me on the steps to do this or recommend a library?
Nwp _'s user avatar
  • 83
1 vote
1 answer
840 views

I am sending a .xlsx file through body form-data with key=excel, type=file, and value=text.xlsx. I want to read the values obtained from the excel file. async create(data, params) { console....
Nwp _'s user avatar
  • 83
1 vote
1 answer
345 views

I need to set up an end point for Prometheus. The end point requires a custom header: "Content-Type": "text/plain; version=0.0.4; charset=utf-8" I tried setting up a custom hook (...
Sergey Podlazov's user avatar
0 votes
1 answer
48 views

when my server starts, I need to fetch data from external API and then save them into my database. This works well, but I have little problem. My function for saving import { EventFetcher } from '....
Daniel Tršťanský's user avatar
0 votes
1 answer
61 views

I'm trying to build a service whose path I wanted to extend from an existing path. Here's my scenario. I have one service called instances which has, among others, the path /instances/<id>/ ...
steven ondieki's user avatar
0 votes
1 answer
245 views

Here's a problem I'm banging my head around since months now: I'm searching for an elegant,consistent way to initialize a table, the first time it is created, whithin feathers-knex I'm using feathers....
precchia's user avatar
1 vote
0 answers
1k views

I am writing my first feathersjs application and I do not know how to specify a conditionally required field in the feathers schema (which is based on ajv and typebox). Basically, I have an '...
mp035's user avatar
  • 1,065
0 votes
1 answer
77 views

How do I create a query in feathersjs where I can find all the rows between two timestamps. I am using mysql as the database. This is what I have so far: const moment = require("moment"); .....
Youzef's user avatar
  • 858
1 vote
1 answer
68 views

We have a nodeJS express app using feathers und we use websockets hosted on Windows Server with iisnode. If we set nodeProcessCountPerApplication to 1 everything works fine. If we set it to 2 or zero ...
Markus's user avatar
  • 2,301
0 votes
1 answer
122 views

How to check if a user is logged in Feathers,it seems only when using the authenticate hook will user be populated in the context params. is there a way to check on a non-restricted path like in the ...
ramon22's user avatar
  • 3,636
0 votes
1 answer
87 views

Im noobs use FeatherJS and I stuck on roles and permissions management in FeatherJS I have tables contains users, users_role, and roles. Table roles have relationship with two permissions table. I ...
Palguno Wicaksono's user avatar
0 votes
1 answer
157 views

I'm trying to build a hook that will restrict certain user actions to specified security roles. But I'm having trouble accessing the user record from a second hook, when the users model is associated ...
David Robert Hoare's user avatar
1 vote
1 answer
83 views

// users.hooks.js const userDeletion = require('../userdeletion/userDeletion'); const triggerUserDeletion = () => { return async (context) => { const userDeletionRes = userDeletion(...
Cloudscape Germany's user avatar
0 votes
1 answer
1k views

Currently, I am encoding images in a Vue.js application to base64 and save them in a MySQL database using feathers.js and feathers-objection. The data type in the table is LONGTEXT, which works fine ...
ix.trc's user avatar
  • 81
0 votes
1 answer
100 views

Is there a way to link or unlink existing account (accessToken) oauth login to feathersjs
Kyaw Zin's user avatar
1 vote
1 answer
141 views

I'm trying to create a solution with FeathersJS and deploying it to AWS lambda function using serverless framework. I used feathers generate app to create my application and choose sequelize as ORM to ...
Muhammad Akram's user avatar
0 votes
1 answer
431 views

So I want to attach a url to my user requests which is in another service. How to customize get request? const { Service } = require('feathers-sequelize') exports.Users = class Users extends Service {...
Lelouch's user avatar
  • 970
0 votes
1 answer
520 views

I am trying to create a table that autoincrements starting from 1000. Following this example, here's my code: const Sequelize = require("sequelize"); const DataTypes = Sequelize.DataTypes; ...
Youzef's user avatar
  • 858
-1 votes
1 answer
540 views

So after authenticating I get an access token in which I store in browser session. My question is, in case user refreshes, how do I validate the token?
Lelouch's user avatar
  • 970
1 vote
2 answers
232 views

Using FeathersJS and Sequelize-MariaDB for this particular App. The DB and Service seem OK from the basic FeathersCLI initialisation We then remove the logger module and replace it with our in-house ...
kimmik's user avatar
  • 21
1 vote
0 answers
250 views

Here is the error: Uncaught TypeError: vue__WEBPACK_IMPORTED_MODULE_0__.default is undefined <anonymous> index.js:7 js app.js:96 __webpack_require__ app.js:397 fn app.js:643 &...
VictorVinson's user avatar
0 votes
1 answer
697 views

I want to build graphql in feathers. And try below method。 from index.js /* eslint-disable no-console */ const logger = require('./logger'); const app = require('./app'); const port = app.get('port');...
corey huang's user avatar
0 votes
0 answers
783 views

I have a MongoDB database with a collection, using a mixture of Parent and Child References. Each document in the collection includes two properties: parentId and childIds. The parentId property is an ...
Wayne's user avatar
  • 156
0 votes
1 answer
174 views

I have a user's item that needs to be validated 10 times (variable value) by other users. And when the item is validated 10 times, the item's owner gets a number of points. But my problem is, if 400 ...
Corentin M's user avatar

1
2 3 4 5
18