- Javascript Key Code List & Table:
keyboard key codes for building interactive typing features
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "rewrites": [ | |
| { | |
| "source": "/(.*)", | |
| "destination": "/index.html" | |
| } | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // model.ts | |
| import mongoose, { Schema } from 'mongoose'; | |
| const schema = new Schema({ | |
| //...schema definition | |
| }); | |
| schema.methods.toJSON = function() { | |
| // ... compute some data to go along with your response |