class OtherClass {}
class MyClass1 extends OtherClass {
publicInstanceField = 1;While the following structure is not an absolute requirement or enforced by the tools, it is a recommendation based on what the JavaScript and in particular Node community at large have been following by convention.
Beyond a suggested structure, no tooling recommendations, or sub-module structure is outlined here.
lib/is intended for code that can run as-issrc/is intended for code that needs to be manipulated before it can be used
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package nettimeout | |
| import ( | |
| "net" | |
| "time" | |
| ) | |
| // Listener wraps a net.Listener, and gives a place to store the timeout | |
| // parameters. On Accept, it will wrap the net.Conn with our own Conn for us. | |
| type Listener struct { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #run ./build.sh on another terminal window | |
| #it will clone your existing repo and run the maven tests off this clone | |
| #the branch tests are run from is the current branch | |
| # | |
| # ./build.sh | |
| #the cloned repo will live in ../DIRECTORY_ROOT/REPO_DIRECTORY | |
| DIRECTORY_ROOT="../privatebuild/" |