Time Out Market is a market of shared JavaScript libraries to help you save time and effort
This project aims to create a market of shared JavaScript libraries to help you save time and effort. The libraries are created by Juntos Somos Mais community and can be used in our internal projects.
- Linters - A set of linters configs to be used in our JavaScript projects
- http-front-cache - Utility was created to provide a simple and efficient way to cache the results of service functions in the browser
- Clone the repository
- Install dependencies:
npm install
- Create a new branch:
git checkout -b my-new-branch
- Make your changes
You can use the NPM Link to locally test any library. To illustrate, follow the steps below:
Link the library by navigating to the node_modules/@juntossomosmais/library-name
directory, for example:
cd node_modules/@juntossomosmais/linters
npm link
Import library into your project by linking it using NPM Link. Navigate to your project's directory and run the following command example:
npm link @juntossomosmais/linters
This will create a symbolic link between your project and the local library.
Now, you can test the modifications in your project locally. Make sure to revert these changes and remove the NPM Link when you're done testing to avoid any conflicts or unexpected behavior with the actual installed library version in your project by running:
npm unlink
Following these steps, you can quickly test and verify any customizations or modifications you have made to the library locally using NPM Link.
!important, as it's an internal project, we don't accept external suggestions to change or add new features.
We only accept contributions from Juntos Somos Mais members, but you could like our project and use it as a reference to build your own project.