Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.62 KB

README.md

File metadata and controls

38 lines (31 loc) · 1.62 KB

Crypto Search

Search amongst the top 200 cryptocurrencies.

Running the application

yarn install
yarn build
yarn start

Navigate to http://localhost:3000

To run in development mode with file watching use yarn dev:local. This command will load fake data from a json file. yarn dev is meant to be ran with now (now dev).

If you have a CoinMarketCap API key and want to use current data, copy it into this constants file.

Directory Structure

  • /repositories - data sources for the application. There is only one, cryptocurrencies, which wraps CoinMarketCap's api.
  • /src - Contents for the SPA.
  • /public - build output.
  • /api - serverless functions that mirror the local server file, so the app can be deployed to the now.sh platform.

Technologies