I\'m using Angular 2 for a signup form: first name, last name, email and password.
After submit, the data is being stored via API call in a database (nodeJs and mongo) a
try this (https://github.com/wulfsolter/angular2-uuid
)
As the doc say :
import { UuidService } from 'angular2-uuid';
constructor(private uuid: UuidService) //<-- pass it in contructor as service
const uuid = this.uuid.generate(); //<-- use it
Hope it helps you! ..as you can see it changed a little bit from what it report here (https://www.npmjs.com/package/angular2-uuid)