https://github.com/natac13/wikisearch
Challellenge from Free Code Camp to use Wikipedia's API
https://github.com/natac13/wikisearch
Last synced: 3 months ago
JSON representation
Challellenge from Free Code Camp to use Wikipedia's API
- Host: GitHub
- URL: https://github.com/natac13/wikisearch
- Owner: natac13
- License: mit
- Created: 2015-11-15T23:02:38.000Z (over 9 years ago)
- Default Branch: gh-pages
- Last Pushed: 2015-12-05T12:57:03.000Z (over 9 years ago)
- Last Synced: 2023-02-27T21:46:52.644Z (about 2 years ago)
- Language: JavaScript
- Size: 606 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## First Thing
```
npm install
```If working with JavaScript file run:
```
npm run wds
```
This starts a Webpack-dev-server to update when any file is changed.If working with CSS and Sass then run in two terminals
```
npm run launch
// other terminal
npm run build
// other terminal
gulp
```
This has a nodmon server that will reload and I will set up a gulpfile at some point to handle a livereload of the webpage itself.## What is this??
An Wikipedia search app that was a challenge from [Free Code Camp](https://freecodecamp.com/). This was one of the project required for the Front-end development certificate. I used React to build this app after getting an introduction from the [documentation's tutorial](https://facebook.github.io/react/docs/tutorial.html) and working through [Egghead.io Build Your First React App](https://egghead.io/series/build-your-first-react-js-application).
I will say things got pretty crazy due to React, Babel, and Javascript all upgrading in some way with changes to syntax and configuration. I even wrote a blog about the weekend starting on the Egghead tutorial. Your can find it [here](https://medium.com/@natac1311/the-weekend-i-choose-to-start-learning-react-fdeb4c11ab03#.t69kytzdp)