├── .gitignore ├── .gitpod.yml ├── README.md ├── package.json ├── public └── style.css ├── views └── index.html └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | .env 3 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | image: gitpod/workspace-node-lts 2 | 3 | ports: 4 | - port: 3000 5 | onOpen: open-preview 6 | visibility: public 7 | 8 | tasks: 9 | - init: npm install 10 | command: npm run start 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Managing Packages With npm 2 | 3 | This is the boilerplate code for the Managing Packages With npm Challenges. Instructions for working on these challenges start at https://www.freecodecamp.org/learn/back-end-development-and-apis/managing-packages-with-npm/ 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fcc-learn-npm-package-json", 3 | "dependencies": { 4 | "express": "^4.14.0" 5 | }, 6 | "main": "server.js", 7 | "scripts": { 8 | "start": "node server.js" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/freeCodeCamp/boilerplate-npm.git" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- 1 | /****** Main Styling ******/ 2 | 3 | body { 4 | font-family: 'Roboto', sans-serif; 5 | font-size: 16px; 6 | color: #222; 7 | background-color: #ECF0F1; 8 | text-align: center; 9 | } 10 | 11 | .container { 12 | padding: 0; 13 | margin-top: 40px; 14 | } 15 | 16 | .footer { 17 | margin-top: 60px; 18 | } 19 | 20 | ol { 21 | list-style-position: inside; 22 | } 23 | ul { 24 | list-style-type: none; 25 | } 26 | 27 | a { 28 | color: #2574A9; 29 | } 30 | /****** Logo Div Styling ******/ 31 | 32 | img { 33 | margin: 20px auto 0 auto; 34 | display: block; 35 | } -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |