Web Development Tips

Ansif Blog
Feb 20, 2024

--

Below mentioned are some useful tips and tools for making web development easier

Sublime text3: Recommended file editor tool for web developers

Browser Sync: Very useful tool to sync our localhost with file editors

Install nodejs

npm install -g browser-sync

After installation, go to project folder and type,

browser-sync start - server - files "**/*"

This command starts BrowserSync with a local server and watches all files for changes

Recommended sites

Writing clean codes

Wireframing tool: https://balsamiq.com/

--

--