How to bulk add in feathersjs

Normally create operation on a service expects an object to create a record. But we can add multiple records at the same request. First you have to enable that in the service options. Then send the data as an array of objects itself

 app.service('users').create([{name: 'Safaldas'},{name: 'Vijay"}] 
safaldas

safaldas