npm install
npm start
go to http://localhost:/3030 and click on the button "Insert Data"
step by step guide incase you decide to do the entire thing manually (no need to do if you wish to run and test)
feathers generate service
equip_id: {
type: DataTypes.INTEGER,
autoIncrement: true,
primaryKey: true
},
const options = {
Model,
paginate,
multi: [ 'create' ] // list of method names
};
<script src="//unpkg.com/@feathersjs/client@^4.3.0/dist/feathers.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/socket.io/2.0.4/socket.io.js"></script>
<script type="text/javascript">
// Set up socket.io
const socket = io('http://localhost:3030');
// Initialize a Feathers app
const app = feathers();
// Register socket.io to talk to our server
app.configure(feathers.socketio(socket));
// Form submission handler that sends a new message
async function insert () {
console.log("I M HERE");
var obj = [
{'type':'My type',
'color':'green',
'location':'north'},
{'type':'My type1',
'color':'red',
'location':'east'},
{'type':'My type3',
'color':'blue',
'location':'west'},
]
// Create a new message with the input field value
let res = await app.service('playground').create(obj);
console.log('res',res);
}
Reference: Feathersjs , sequalize enable multi, multi create in a service