What is Express.js?

后端 未结 8 2129
北荒
北荒 2020-12-02 03:42

I am a learner in Node.js.

  1. What\'s Express.js?
  2. What\'s the purpose of it with Node.js?
  3. Why do we actually need Express.js? How is it useful fo
8条回答
  •  没有蜡笔的小新
    2020-12-02 03:46

    1. Express.js is a modular web framework for Node.js
    2. It is used for easier creation of web applications and services
    3. Express.js simplifies development and makes it easier to write secure, modular and fast applications. You can do all that in plain old Node.js, but some bugs can (and will) surface, including security concerns (eg. not escaping a string properly)
    4. Redis is an in-memory database system known for its fast performance. No, but you can use it with Express.js using a redis client

    I couldn't be more concise than this. For all your other needs and information, Google is your friend.

提交回复
热议问题