Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kevindebenedetti/portfolio_vue


https://github.com/kevindebenedetti/portfolio_vue

Last synced: 3 days ago
JSON representation

Awesome Lists containing this project

README

        

# Portfolio_vue

My portfolio developed with Vue V3 & Express.

## Frontend

### Dependencies

```sh
npm i axios
```
```sh
npm i prismjs
```
```sh
npm i tailwindcss
```

## Backend

### Dependencies

```sh
npm i axios
```
```sh
npm i body-parser
```
```sh
npm i connect-history-api-fallback
```
```sh
npm i cors
```
```sh
npm i dotenv
```
```sh
npm i express
```
```sh
npm i express-validator
```
```sh
npm i nodemailer
```
```sh
npm i path
```
```sh
npm i winston
```

## Project Setup

```sh
npm install
```

### Compile and Hot-Reload for Development

```sh
npm run dev
```

### Compile and Minify for Production

```sh
npm run build
```

### Run Unit Tests with [Vitest](https://vitest.dev/)

```sh
npm run test:unit
```

### Run End-to-End Tests with [Cypress](https://www.cypress.io/)

```sh
npm run test:e2e:dev
```

This runs the end-to-end tests against the Vite development server.
It is much faster than the production build.

But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments):

```sh
npm run build
npm run test:e2e
```

### Lint with [ESLint](https://eslint.org/)

```sh
npm run lint
```