Thursday, January 24, 2019

Debug angular apps with vscode

To debug an angular app with vs code follow these steps:

  1. Start the application using npm start command
  2. Add a break point in the code
  3. Select the menu option Debug -> Start Debugging.

No comments:

Regex Email validation in c# dot net core

 Use this regex /^_?[a-zA-Z0-9]([a-zA-Z0-9]*[._+-])*[a-zA-Z0-9_]+@(?!-)[A-Za-z0-9-]{1,63}(?<!-)(\.(?!-)[A-Za-z0-9-]{1,63}(?<!-))*\.[A-...