A simple skalavel/js without babel template.
See the next steps to create your application with skalavel and javascript:
mkdir -p ~/repo
cd !$
git clone https://github.com/AlphaTechnolog/skalavel-js-template my-awesome-skalavel-app
cd !$Now install the requirements with yarn or npm:
npm install
# or with yarn
yarnFirst copy the .env.example file to .env
cp -r ./.env.example ./.envThe .env contains this:
PORT=3000
Now, run the app:
npm start
# or with yarn
yarn startIt run the app in the port 3000, open it in your browser!
To run the app for development use the dev command it uses nodemon to apply the hot reloading.
npm run dev
# or with yarn
yarn dev