learnyounode icon indicating copy to clipboard operation
learnyounode copied to clipboard

Learn You The Node.js For Much Win! An intro to Node.js via a set of self-guided workshops.

Results 103 learnyounode issues
Sort by recently updated
recently updated
newest added

_from https://github.com/nodeschool/discussions/issues/783 /cc @hymredemption_ The official solution to the last practice using: ``` javascript var time = new Date(parsedUrl.query.iso) ``` to get the time in the query. but I found...

With ES modules in the node.js LTS it would be nice to move the tutorial to this module system

Solution of "time-server" exercise contains newline character ``\n``. It does not accept if user submits without ``\n``

This is still missing most of the translations for the doc change. This implements a TODO comment. Note that I am totally new to Node.js and JavaScript, so i might...

Hi, In the solutions to the exercises my_first_io and my_first_async_io, the variable to count the number of newlines is called "lines". This is misleading since we are not counting the...

Add a German translation file. Fix #714 .

Hey there. I noticed that there is a **german** translation missing. If it's valid/needed I would volunteer to add it.

Hello! I noticed a potential issue in the "Make it Modular" exercise. When importing `readdir` using a named import like this: ```js const { readdir } = require("fs"); const {...

http-json-api-server.js ``` 'use strict' const http = require('http') const URL = require('url').URL const port = process.argv[2] function convertISOTimeToJson(url) { const date = new Date(url.searchParams.get('iso')) if ('/api/parsetime' === url.pathname) { return...

Here I'm trying to make it more explicit that a global variable is needed as a container for the sum. I didn't pick up on this and tried to fit...

needs-work