Nodeschool Passau
Welcome to the nodeschool Passau!
learn to code
You would like to get into programming and web technologies with JavaScript and Node.js? Or you are just curious what that is all about? Then the nodeschool.io lessons are for you!at your own pace
Choose from the wide variety of freely available lessons on nodeschool.io and go through them at your pace. If working face-to-face with other interested people suits you more, attend on of our local workshops!for everybody
We love to code and like to spread this feeling to everyone who is interested! Therefore we try to make workshope be an awesome experience for everyone! Please respect our Code of Conduct to help us achieve this.Upcoming events
Next workshop:
More details and registration at the meetup event page
Workshop Agenda
The workshops we host embrace the spirit of letting you learn at your own pace.
During registration for a workshop you can choose whether you'd like to attend the Beginner's Track or whether you'd like to work on one of the Learning Molecules or pick from the lessons provided on nodeschool.io.
The mentors lend a helping hand with getting wifi access, setting up node and the nodeschool.io lessons and any questions you have regarding JavaScript or Node.js.
Code of Conduct
We, the organizers of Nodeschool Passau, are dedicated to providing a harassment-free community for everyone, regardless of sex, gender identity or expression, sexual orientation, disability, physical appearance, age, body size, race, nationality, or religious beliefs. We do not tolerate harassment of community members in any form. Participants violating these rules may be sanctioned or expelled from the community at the discretion of the organizers of Nodeschool Passau. Harassment includes offensive verbal or written comments related to sex, gender identity or expression, sexual orientation, disability, physical appearance, age, body size, race, nationality, or religious beliefs, deliberate intimidation, threats, stalking, following, harassing photography or recording, sustained disruption of talks or other events, inappropriate physical contact, and unwelcome sexual attention. Sexual language and imagery is not appropriate for any events at Nodeschool Passau meetups or in any related communication channels. Community members asked to stop any harassing behavior are expected to comply immediately. Sponsors and presenters are also subject to the anti-harassment policy.If a community member engages in harassing behavior, the organizers of Nodeschool Passau may take any action they deem appropriate, including warning the offender or expulsion from the community. If you are being harassed, notice that someone else is being harassed, or have any concerns, please contact an organizer immediately.If you have questions or feedback about this Code of Conduct please contact one of the organizers.The organizers of the above communities developed this Code of Conduct to govern their respective events and communication channels. We used PDX Python's anti-harassment policyand the Geek Feminism Conference anti-harassment policy as a starting point. This Code of Conduct, like its inspirations, is licensed under the Creative Commons Zero license.Installation
nvm
We recommend that you install a node version manager such that you can upgrade to new versions easily:- Windows: nvm-windows. Download nvm-setup.zip from the releases page, extract and run the installer.
- Linux: nvm
nvm proxy <your-proxy>
. An alternative to using nvm-windows is Chocolatey.node
Open a command-line prompt in admin mode and use nvm to install the latest version of node and npm available with nvm withnvm install 8.9.1
followed by nvm use 8.9.1
.Check that the installation was successfuly with node --version
.yarn
As package manager, we recommend using yarn. Install it from the official website or via chocolatey. If your are behind a corporate proxy, configure yarn to use the proxy withyarn config set proxy <your-proxy>
andyarn config set https-proxy <your-proxy>
.If you'd rather stick to npm, don't forget to configure this for usage with your corporate's proxy, if needed.
Visual Studio Code
As code editor we recommend Visual Studio Code, a free and open source IDE available for multiple platforms.Your first nodeschool workshopper
Install your first workshopper with e.g.yarn global add javascripting
. Then create a new folder "javascripting" somewhere on our computer and open the folder in Visual Studio Code. Open a terminal in Visual Studio Code (press F1 to open the search bar, type in "terminal" and select the option to toggle the integrated terminal). In the terminal, type javascripting and follow the instructions.