Skip to content

metehansenol/barejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

barejs

Bare-bones Node.js starter that gives you the minimum needed to run and test JavaScript locally.

Prerequisites

  • Node.js 18+ (for node --watch support).
  • npm (ships with Node).
  • VSCode (debug-ready via .vscode/launch.json – use the "Launch Program" config).

Quick start

  1. Install deps
npm install
  1. Run main (restarts on file changes)
npm start
  1. Run tests
npm test

Project layout

.
├── src/
│   ├── index.js        # entry point; logs "Hello world"
│   └── index.test.js   # placeholder Jest suite
├── jest.config.js      # Node test env, 5s timeout
└── package.json        # scripts and metadata

License

MIT. See LICENSE.

About

Bare minimum content to run and debug any js in your local

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors