- Express server with CORS, JSON middleware - Auth middleware (Bearer token) - Document CRUD with markdown storage - Library CRUD with nested support - Tag indexing and search - Error handler middleware - Config from env vars - Init script for data structure
12 lines
163 B
JavaScript
12 lines
163 B
JavaScript
/**
|
|
* SimpleNote Web - UUID Helper
|
|
*/
|
|
|
|
import { v4 as uuidv4 } from 'uuid';
|
|
|
|
export function generateId() {
|
|
return uuidv4();
|
|
}
|
|
|
|
export default { generateId };
|