Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(projects): New 'Copy or Move' project #1368

Closed
wants to merge 9 commits into from
8 changes: 8 additions & 0 deletions projects/04-copy-or-move/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
8 changes: 8 additions & 0 deletions projects/04-copy-or-move/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 8
}
}
5 changes: 5 additions & 0 deletions projects/04-copy-or-move/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DS_Store
*.swp
.nyc_output/
coverage/
node_modules/
428 changes: 428 additions & 0 deletions projects/04-copy-or-move/README.md

Large diffs are not rendered by default.

371 changes: 371 additions & 0 deletions projects/04-copy-or-move/README.pt.md

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions projects/04-copy-or-move/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const copyOrMove = () => {
return 'hello world';
};
8 changes: 8 additions & 0 deletions projects/04-copy-or-move/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "copy-or-move",
"version": "0.1.0",
"engines": {
"node": ">=18.x"
},
"type": "module"
}
30 changes: 30 additions & 0 deletions projects/04-copy-or-move/project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
track: web-dev
learningObjectives:
- js/data-types/primitive-vs-non-primitive
- js/data-types/arrays
- js/data-types/objects
- js/conditionals
- js/functions
- js/recursion
- js/modules/commonjs
- js/modules/es-modules
- js/expression-vs-statement
- js/async/callbacks
- js/async/promises
- js/testing/unit
- js/testing/async
- js/testing/mocks
- js/testing/compatibility
- js/linting
- js/semantics
- node/npm-install
- node/package.json
- node/npm-scripts
- node/process
- node/filesystem
- scm/git/setup
- scm/git/intro
- scm/git/integration
- scm/github/setup
- scm/github/collaboration
- scm/github/project-management
9 changes: 9 additions & 0 deletions projects/04-copy-or-move/test/copy-or-move.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { copyOrMove } from "../index.js";

describe('copyOrMove', () => {

it('Debería...', () => {
console.log('Arréglame!');
});

});
Binary file added projects/04-copy-or-move/thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading