Skip to content

Entorno de desarrollo: Server, Automatización, Transpilación, Bundling, Linting, Testing, Integración Contínua

Notifications You must be signed in to change notification settings

codemcu/dev-environment

Repository files navigation

Entorno de desarrollo desde 0

para VanillaJS, sin ningún framework de moda (Angular, React, Vue) incluye:

  • Server
  • Automatización
  • Transpilación
  • Bundling
  • Linting
  • Testing
  • Integración Contínua
  1. Server

    "express": "4.17.1"
  2. Automatización

    "scripts": {
       "start": "babel-node ./server/server.js",
       "lint": "eslint ./src",
       "lint:fix": "eslint ./src --fix",
       "test": "jest --watch"
     },
  3. Transpilación

     "@babel/cli": "7.8.4",
     "@babel/core": "7.9.0",
     "@babel/node": "7.8.7",
     "@babel/preset-env": "7.9.5",
  4. Bundling

     "webpack": "4.42.1",
     "webpack-dev-middleware": "3.7.2"
  5. Linting

     "eslint": "6.8.0",
     "prettier": "2.0.4",
  6. Testing

     "jest": "25.3.0",
  7. Integración Contínua

    language: node_js
    node_js:
      - v8
      - v10
      - v12

About

Entorno de desarrollo: Server, Automatización, Transpilación, Bundling, Linting, Testing, Integración Contínua

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published