Giter VIP home page Giter VIP logo

archive's Introduction

MSDV Archive

This repository archives projects made by students of the MS Data Visualization program at Parsons School of Design.

Note: Please submit a pull request with your new project URL if you relocate your work to a different domain name or hosting provider.

Getting Started

Prerequisites

You will need the following command line tools.

Required:

Optional:

  • A Node.js version manager like nvm or fnm

Development Tooling

Vue (Version 3)

Version 3 of Vue includes different component APIs than Vue 2, including a new composition api flow.

Vite

Vite is a tool that provides a development server and bundles JavaScript modules into publishable assets. You can configure Vite through the vite.config.mjs file.

ESM (ECMAScript Modules)

This project uses ESM (or ECMAScript modules). Node.js will defaults to using CommonJS modules but will use ESM if your file extension ends in .mjs and you have "type": "module" set in package.json

Warning: Use .mjs extension instead of .js. If CommonJS is needed, use .cjs. Do not remove "type": "module" from package.json

Type Annotations

If you open this repository using Visual Studio Code, you will notice that it provides type checking. This is a helpful way to avoid bugs like if you pass a string into a function that expects a number. To configure this behavior, you can adjust the jsconfig.json file.

pnpm

This repository uses pnpm to run commands. pnpm is an alternative to npm but uses less storage space on your computer by installing local dependencies within a shared location.

Our package.json file defines some common scripts that are used during development. They can be invoked by running pnpm [script name].

# Example:
# pnpm [script name]
pnpm dev
script name description why is this helpful
dev starts development server gives us a live preview of our site that we can view in the browser
format runs prettier to format files according to .pretterrc.yml config keeps code style consistent and reduces the number of line changes between Pull Requests
lint runs eslint to check for code errors and bugs helps catch errors like typos before we build the site
test runs jest to execute unit tests to check components checks that recent changes don't change how our components function
validate validates that all JSON files in /data follow the correct schema ensures that there aren't any unknown or missing properties in our JSON
build builds static deployment assets compiles framework specific files (like .vue) to browser compatible javascript

GitHub Actions

This repository is set up to use GitHub Actions to check the status of commits made and to deploy the project to GitHub Pages. Each workflow is defined in a separate Yaml file in .github/workflows/

workflow description
test runs formatter, linter, and ensures that build process do not throw any errors
validate checks that all JSON files in /data folder use the correct schema and don't have unknown or missing properties
deploy builds web assets and pushes automatically to github pages branch

Data

Project data is stored in ./data/projects.json. The file follows the schema defined in ./data/schema.json which follows a JSON Schema specification.

The projects array follows this template:

{
   "description": "Project description",
   "image": "static/preview-YEAR/<STUDENT NAME>.png",
   "name": "Student Name",
   "portfolio": "<PORTFOLIO LINK>",
   "repo": "<PROJECT REPO>",
   "subtitle": "Project intro text",
   "tags": ["#data", "#technology"],
   "title": "Project title",
   "url": "<PROJECT LINK>",
   "video": "<VIDEO LINK>",
   "year": YYYY
}

The validate GitHub workflow will run anytime a commit is made (including pull requests). You can also validate before pushing code by running

pnpm validate

Local Development

Starting a local development server

  1. Make sure you have the right version of Node.js

    node --version
    # v16.15.0
  2. Make sure you have the right version of pnpm

    pnpm --version
    # >= 7.14.0
  3. Install dependencies

    pnpm install
  4. Start development server

    pnpm dev
  5. You can now open http://localhost:8080 in your browser.

Deploying

An update to gh-pages is made when a commit is pushed to the main branch.


How to contribute updates to this repository

It is recommended to follow the best practices detailed in the MS Data Visualization GitHub workflow document found at https://github.com/visualizedata/github-workflow

Workflow for contributing to MS Data Visualization repositories

  1. Initial setup:

  2. In the local clone of your fork, create a branch for your edits. git branch mybranch creates a branch named mybranch git checkout mybranch switches to the branch mybranch

    • Do all your work in this branch.
    • Push your branch to the forked repo early and often.
    • Never work in the main branch!
    • gh-pages will publish directly to the live site (it takes about 5 minutes to update)
  3. Pull in changes often from the upstream main to keep it synced so that when you prepare your pull request, merge conflicts will be less likely. Again, never work in the main branch!

  4. Merge the fork main into the fork branch and, if applicable, resolve any merge conflicts. git merge <branch> merges the specified branch into the current branch.

  5. When you are ready for your contributions to be considered, open a Pull Request in GitHub. The Pull Request should be for the up-to-date branch of your fork. Prior to submitting the Pull Request, make sure you have:

    • Synced the fork main with the latest version of the upstream main (#3).
    • Merged the fork main to the fork branch and resolved any merge conflicts (#4).

Tips

Use GitHub issues to log problems and communicate.

Sometimes, you mess up and need to go back to a previous commit. Use revert. Do not use reset! Here's a helpful Stack Overflow answer.


Helpful resources

Vite

Node.js

Vue

pnpm

JSON Schema

GitHub

archive's People

Contributors

danielsauter avatar papermashea avatar 3milychu avatar zachkrall avatar anbnyc avatar jessiejessje avatar yujunmjiang avatar aaronxhill avatar pessoaflavio avatar ssoheecho avatar chayanitoey avatar readyletsgo avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar Kostas Georgiou avatar

archive's Issues

Add project category and add partnership projects

Add (starting in complete groups from the top, one group following the other, in reverse chronological order)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.