Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying Mastering Web Application Development with Express
  • Table Of Contents Toc
Mastering Web Application Development with Express

Mastering Web Application Development with Express

By : Alexandru Vladutu
3.7 (3)
close
close
Mastering Web Application Development with Express

Mastering Web Application Development with Express

3.7 (3)
By: Alexandru Vladutu

Overview of this book

If you are a Node.js developer who wants to take your Express skills to the next level and develop high performing, reliable web applications using best practices, this book is ideal for you. The only prerequisite is knowledge of Node.js.
Table of Contents (13 chapters)
close
close
12
Index

API versioning


At this time, the URLs of the SmartNotes application are not prefixed with anything, so it will be hard to add a new version of our API.

Normally, we should always have in mind that APIs deprecate over time and new versions are released. Fortunately, since Express applications can be mounted onto others, we can achieve this by modifying a code segment in server.js. All we have to do is replace app.listen(config.port) with the following code:

var masterApp = express();
masterApp.use('/api/v1/', app);
masterApp.listen(config.port);

Now, instead of making a GET HTTP request to /users/johndoe, for retrieving user information (for example), the API clients will make a request to /api/v1/users/johndoe. This means that when a new version of the API is available, we can make it available using the /api/v2/ prefix, so it's mission accomplished!

Note

Remember to update the functional tests after doing this; otherwise, they will fail because they will be sending requests to the old URLs.

CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Mastering Web Application Development with Express
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon