This is a shared framework for JSCN meetup projects.
It contains a number of challenges tailored toward experimenting with and learning different technologies via a variety of available application "challenges" to build.
Futher, projects can live over time in one place, and more importantly (for me :)) it will allow for infrastructure reuse going forward.
It is recommended that you (star and) fork this repository
- US President Voting App - Create a voting app and choose the next leader of the free world!
git clone https://github.com/jscodingnights/jscn-project-starter.git
git checkout -b us-presidents
For example, if you're working on the us-presidents challenge, and you want to use the React
client starter, copy the contents of the starters/React
folder into /challenges/us-presidents
:
cp -R ./starters/React/. ./challenges/us-presidents
git add --all
git commit -m "Initial Commit"
cd challenges/us-presidents
npm install
npm start