Skip to content

romnance/artsysearcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intro to Artsysearcher

Artsysearcher is a web app that integrates with Artsy public GraphQL API.

Can be used for searching your favourite artists, reading the info about them and enjoy their art.

Check hosted app online

To run on localhost

Open your terminal and then type

$ git clone {the url to the GitHub repo}

This clones the repo

cd into the new folder and type

$ npm install

This installs the required dependencies

To run the React project. $ npm start

You are done! Now you can start editing and checking the React project in the new folder that's created.

Tools and technologies

For fast and safe development, I used Create React App as a base for this project. CRA is the best way to start building a new simple application in React. It sets up your development environment so that you can use the latest JavaScript/TypeScript features, provides a nice developer experience, and optimizes your app for production.

When you’re ready to deploy to production, running npm run build will create an optimized build of your app in the build folder. You can learn more about Create React App from its README and the User Guide.

To fetch data I used ApolloClient

This project was bootstrapped with Create React App