6

Is there any Node.py? Like having all features of Node.js but python?

Comments
  • 3
    Yes, it's called Python.

    Seriously, Node is just a runtime for JS plus a standard library that's smaller than Python's standard library.
  • 1
    If you're looking for a web framework (which Node can be used for, no idea why you would want to, though) look at Django.
  • 1
    with import socket, threading you can do anything... :D
  • 0
    If you're looking for Web development with asynchronous i/o, check-out tornado framework. That's kinda Tha equivalent of expressjs that is popular use in node.
  • 2
    @Nexion can you tell differences between django and flask? Thanks
  • 1
    @GurpreetSK95 I've never used flask but from what it looks like at first glance you have to do a lot of setup on your own. Django has workflows predefined and looks much more extensible without a lot of work compared to Flask.
Add Comment