Code Monkey home page Code Monkey logo

01-node-ecosystem's Introduction

CF 01: Node Ecosystem

Submission Instructions

  • Work in a fork of this repository.
  • Work in a branch on your fork.
  • Write all of your code in a directory named lab- + <your name> e.g. lab-susan.
  • Open a pull request to this repository.
  • Submit on canvas a question and observation, how long you spent, and a link to your pull request.
  • Features without unit tests behind them will not be graded.

Resources

Configuration

Configure the root of your repository with the following files and directories. Thoughfully name and organize any aditional configuration or module files.

  • README.md - contains documentation
  • .gitignore - contains a robust .gitignore file
  • .eslintrc - contains the course linter configuratoin
  • .eslintignore - contains the course linter ignore configuration
  • lib/ - contains module definitions
  • test/ - contains unit tests

Feature Tasks

Greet Module

Create a NodeJS module in the lib/ directory named greet.js that exports a single function.

  • The greet function should have a single parameter (arity of one) that should expect a string as it's input
  • The greet function should return the input name, concatenated with "hello ": eg. ("hello susan")
  • The greet function should return null if the input is not a string

Arithmetic Module

Create a NodeJS module in the lib/ directory named arithmetic.js that exports an object. This module should have add and sub methods that implament addition and subtraction.

  • The add method should have an arity of two (define two paramiters)
    • If either parameter is a non-number the function should return null
    • Else return the sum of the 2 numbers
  • The sub method should have an arity of two (define two paramiters)
    • If either parameter is a non-number the function should return null
    • Else return the second paramiter subtracted from the first paramiter

Testing

Greet Module Tests

  • Write a test that expects the greet module to return null when you supply non string values
  • Write a test the expects the greet module to return 'hello world'
    • This should happen when invoked with 'world' as the first argument

Arithmetic Module Tests

  • Test each method for proper use (invoked with number arguments)
  • Test each method for inproper use (invoked with one or more non-numner arguments)

Documentation

In your README.md describe the exported values of each module defined in your lib/ directory. Every function description should include it's airty (expected number of paramiters), the expected data for each paramiter (data-type and limitations), and it's behavior (for both valid and invalued use). Feel free to write any additional information in your README.md.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.