https://docs.google.com/forms/d/1e1AcY_FzsuW7rUBR4Z29SsQvj9ozcU74ioLhaiySF6g/edit
- What does the man page say
git init
does? - What's the
git
command alphabetically beforestatus
? Hint: you'll need to find a comprehensive list of git commands
- In
workspace
, create a folder calledwebsite
. What was the command you executed? - Using the command line, create a file
index.html
using the command line. What was the command you executed? - Inside
website
, create the following directories:src
andimg
. What was the command(s) you executed? - Inside
src
, create the following directories:script
,styles
using only one command. What was the command you executed? - From the
website
dir, what command would you use to create anindex.css
file inside ofstyles
?
-
In the
package.json
, what version ofthrough-2
is specified? Hint: VS Code has a method to search in files -
In the same file, what are the dependencies for
tar-pack
? -
How many files are in thechalk
node module? (including hidden files) -
In the node module for
create-react-app
, what is the file size (in KB) ofindex.js
? -
In the same node module, for
create-react-app
, what are the permissions forREADME.md
? -
In the node module for
validate-npm-package-name
, who holds the copyright? Hint: look for a license file
-
From inside the
workspace
directory, execute the commandnpm install -g create-react-app
-
create-react-app <your-app-name>
to create a React App -
Navigate into the folder with the React app you just created (Hint: it is the folder with the name
your-app-name
that you just entered -
npm start
to start the development server. Hint: when your development server is running, that termianl tab will be occupied. Open a new tab to run commands. -
Change the filepath from the
logo.svg
icon to an image of your choice (class-appropriate). Hint:App.js
is where you want to look -
Change the text from
Welcome to React
to<your name>
. -
Take a screenshot and submit for proof.
In a new terminal window, execute vi
- How do you quit Vim? (Knowing how to quite Vim is an important skill!)