14Jan

 

instrumenty_v_masterskoj

  1. Editor.  Description of the editors can be found here. I personally use WebStorm. The IDE highlights the code syntax, indicates errors, there is the possibility to connect to FTP, SFTP, and much more.ws-overview__vcs-grunt-debug@2x
  2. As to the console, in my opinion, Chrome has the most convenient one. You can read about using it here.
    console-split-view
  3. Postman & Paw – API testing and debugging.
    light-theme-main-view-min
  4. Node Inspector – debugging a server Node.js in the browser.
    node-inspector-source-maps
  5. Nodemon – monitors changes on the server side, and restarts the Node.js project.
  6. Forever & Pm2 keep the Node.js server constantly On, the latter – with a load balancer, and a process manager.
    pm2-list
  7. Regexpal.com & Regex101.com allow to quickly debug regular expression.
    k60mov9c
  8. Jsfiddle & Jsbin & CodePen are sandboxes for testing js, html, css.
    jsfiddle_figureb
  9. WebDeveloper is a browser extension with a lot of different options (highlighting blocks, deactivating styles, js, cookies, etc.)
  10. ClearCache – a Chrome extension that allows cleaning cache all at once.
  11. SourceTree – a convenient UI for working with Git, it has Github and Bitbucket support.
    hero_win_all
  12. 3T MongoChef, Robomongo – tools for working with MongoDb.
    multiple-delete-in-table-mode
  13. DataGrip – a tool for working with relational databases.
  14. Mongodump dumps a MongoDb database.
  15. Mongorestore restores the database from a dump.
  16. Codota learns from the existing code to help you build software faster and smarter.  It combines techniques from program analysis, natural language processing, and machine learning to learn from the code.

If you know about more tools that make life easier for JavaScript developers, please write in the comments.

We are looking forward to meeting you on our website soshace.com

19. Node.js Lessons. Safe Way to a FS File and Path

This article will deal with how to create a web server in Node.js, which will return a file to a user from a public directory. You may wonder: why do we need Node.js here? Why can’t we use another server? You question surely does make sense. Yes, for returning files other servers are generally more effective. From the other side, Node.js works pretty well, too. Second, before returning a file it can also perform some intellectual activities: for example, refer to a database, check out whether a user is permitted to access the file and give the file to him, if it’s permitted.

23. Node.js Lessons. Domains, asynchronous try.. catch. Part 1.

Hey all! Our topic for today is Domains.

Domains are one of the Node.js options lacking both in standard JavaScript and browser versions of JavaScript. Domains were created to catch any asynchronous errors. For instance, if we look at the server that we’ve explored in one of our previous articles (download the lesson code from here for your convenience), we will see that everything is ok when it’s working

Leave a Reply