是否可以在 vps 上开发 create-react-app?
Is it possible to develop a create-react-app on a vps?
我基本上想在 vps 上开始开发一个 create-react-app,以便我的客户可以检查我的进度。
我知道你可以 "Add React to a Website" 但我想在我的网站上使用库,但我不知道如何使用 ReactJS 网站上的 "Add React to an existing website" 教程。
编辑:添加更多标签。
为什么不用ngrok这样的服务
您可以使用自己的笔记本电脑或服务器
所以在你创建并启动你的 React 应用程序之后
npx create-react-app my-app
cd my-app
npm start
然后运行
ngrok http 3000 -host-header="localhost:3000"
- 从互联网上的任意位置打开 url 文件
我基本上想在 vps 上开始开发一个 create-react-app,以便我的客户可以检查我的进度。
我知道你可以 "Add React to a Website" 但我想在我的网站上使用库,但我不知道如何使用 ReactJS 网站上的 "Add React to an existing website" 教程。
编辑:添加更多标签。
为什么不用ngrok这样的服务
您可以使用自己的笔记本电脑或服务器
所以在你创建并启动你的 React 应用程序之后
npx create-react-app my-app cd my-app npm start
然后运行
ngrok http 3000 -host-header="localhost:3000"
- 从互联网上的任意位置打开 url 文件