Skip to content

Commit

Permalink
Basic code structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksey-rezvov committed Mar 1, 2020
1 parent 6bce6bb commit 0514531
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 0 deletions.
4 changes: 4 additions & 0 deletions doubtful/bar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

This comment has been minimized.

Copy link
@galibibr

galibibr Sep 3, 2023

!

This comment has been minimized.

Copy link
@klimovich-anton

This comment has been minimized.

Copy link
@klimovich-anton

klimovich-anton May 7, 2024

!

-*/

exports.bar = function bar(){
console.info('bar');

This comment has been minimized.

Copy link
@galibibr

galibibr Sep 3, 2023

!

}
4 changes: 4 additions & 0 deletions foo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

This comment has been minimized.

Copy link
@galibibr

galibibr Sep 3, 2023

!

exports.foo = function(){
console.info('foo');
}
10 changes: 10 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const {foo} = require('./foo')

This comment has been minimized.

Copy link
@Iliausov

Iliausov May 9, 2020

амвмв

This comment has been minimized.

Copy link
@galibibr

galibibr Sep 3, 2023

!

const {bar} = require('./doubtful/bar')

function main() {
console.info('main');

This comment has been minimized.

Copy link
@nkorobkov98

nkorobkov98 Feb 12, 2024

1231231

foo();
bar();
}

main()
20 changes: 20 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "system-review-example",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "node main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oktend/system-review-example.git"
},
"author": "",
"license": "MIT",

This comment has been minimized.

Copy link
@bakirstagram

bakirstagram Feb 27, 2023

jhkhhgjk

This comment has been minimized.

Copy link
@NailsRumford

NailsRumford Jun 7, 2024

565

"bugs": {
"url": "https://github.com/oktend/system-review-example/issues"
},
"homepage": "https://github.com/oktend/system-review-example#readme"
}

2 comments on commit 0514531

@galibibr
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

test code review

@nkorobkov98
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wewewew

Please sign in to comment.