Heroku에서 React로 앱 삭제
8683 단어 herokureactfrontendjavascript
Una de las formas gratuitas y fáciles de alojar tus aplicaciones web es usandoHeroku .
다음 응용 프로그램에 대한 REACT 문제 해결:
Cambios 및 반응
npm i express
npm i express-favicon
const express = require('express');
const favicon = require('express-favicon');
const path = require('path');
const port = process.env.PORT || 8080;
const app = express();
app.use(favicon(__dirname + '/build/favicon.ico'));
// the __dirname is the current directory from where the script is running
app.use(express.static(__dirname));
app.use(express.static(path.join(__dirname, 'build')));
app.get('/ping', function (req, res) {
return res.send('pong');
});
app.get('/*', function (req, res) {
res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
app.listen(port);
start
en el package.json (SÓLO PARA DESPLEGAR A HEROKU)"start": "node server.js",
캄비오스 엔 헤로쿠
Desplegando tu app desde el 터미널
heroku login
El terminal te pide pulsar cualquier tecla(menos la letra q). Esto te abrirá una ventana en el navegador para que aceptes el login.
heroku git:remote -a miprimeraappenheroku
git add .
git commit -am "Subiendo a heroku"
git push heroku master
Y aqui el proyecto desplegado
https://miprimeraappenheroku.herokuapp.com/
Espero les sirva, hasta la próxima :)
Reference
이 문제에 관하여(Heroku에서 React로 앱 삭제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/sandymarmolejo/desplegando-una-app-de-react-a-heroku-4apm텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)