A library written entirely in typescript inspired Linq that exists in .NET.
Linq to type allows for the manipulation of data collections in the same way we do in C # using lambda expressions.
We've set up a separate document for our contribution guidelines.
In this section we will see how to do to contribute com o Linq To Type.
Before you can build the project, you must install and configure the following dependencies on your machine:
- Git: The Github Guide to Installing Git is a good source of information].
- Node.js v6.x (LTS): We use Node to run tests, and generate distributable files. Depending on your system, you can install Node either from source or as a pre-packaged bundle.
- We recommend using nvm (or nvm-windows) to manage and install Node.js, which makes it easy to change the version of Node.js per project.
- Typescript because our project is TypeScript based.
# Clone your Github repository:
git clone https://github.com/<github username>/linq-to-type.git
# Go to the Linq To Type directory:
cd linq-to-type
# Add the main Linq To Type repository as an upstream remote to your repository:
git remote add upstream "https://github.com/nicolastakashi/linq-to-type.git"
# Install node.js dependencies:
npm install
# Run Linq To Type tests
npm test