Não estou conseguindo subir o server na porta 8080.
Segue minhas configurações, conforme seguido na aula:
webpack.config.js:
const path = require('path');
const babiliPlugin = require('babili-webpack-plugin');
let plugins = [];
if(process.env.NODE_ENV == 'production') {
plugins.push(new babiliPlugin());
}
module.exports = {
entry: './app-src/app.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
},
module: {
rules: [
{
test: /\.js$/, // all files that end ".js"
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
}
]
},
plugins
}
package.json:
{
"name": "client",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-dev": "webpack --config webpack.config.js",
"build-prod": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"start": "webpack-dev-server"
},
"author": "",
"license": "ISC",
"dependencies": {
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2017": "^6.24.1",
"babili-webpack-plugin": "^0.1.1",
"cross-env": "^5.0.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^2.5.1"
}
}
- Alterei a url (http://locaalhost:3000): arquivo app.js - fetch() & NegociacaoService.js - get() de todos métodos da classe que usam o método get(url)
- Comentei o código do arquivo express.js para parar de subir o servidor na porta 3000 - Testei e realmente não subia o server apresentando a msg de erro "Cannot GET /"
- Deletei a pasta "dist", conforme instruído.