How to install nodejs on Xampp localhost

前端 未结 7 1951
醉话见心
醉话见心 2020-12-23 16:23

Been seeing a lot of how to\'s on how to install nodejs but nothing is at all clear.

So I ask...

Can someone provide a step by step installat

相关标签:
7条回答
  • 2020-12-23 17:26

    It is possible to run NodeJS trough Apache/XAMPP. Great tutorial how to setup httpd.conf / vhosts.conf http://thatextramile.be/blog/2012/01/hosting-a-node-js-site-through-apache

    <VirtualHost 109.74.199.47:80>
        ServerName thatextramile.be
        ServerAlias www.thatextramile.be
    
        ProxyRequests off
    
        <Proxy *>
            Order deny,allow
            Allow from all
        </Proxy>
    
        <Location />
            ProxyPass http://localhost:3000/
            ProxyPassReverse http://localhost:3000/
        </Location>
    </VirtualHost>
    

    In the end it would be accessible trough port 80 thatextramile.be

    0 讨论(0)
提交回复
热议问题