SyncTeX is a collaborative LaTeX editor designed to help multiple users edit LaTeX documents in real time.
To set up SyncTeX locally, follow these steps:
Ensure you have Node.js installed. If not, download and install it from nodejs.org.
Then, install Yarn (if not already installed):
npm install -g yarn
Verify installation:
yarn --version
git clone https://github.com/notashwinii/SyncTeX.git
cd SyncTeX
Navigate to the client directory and install dependencies:
cd client
yarn install
Start the client:
yarn start
This will launch the frontend at http://localhost:3000/.
Navigate to the server directory and install dependencies:
cd ../server
npm install
Run the backend server:
node index.js
The server will start at http://localhost:3001/.
Once both the client and server are running, open http://localhost:3000/ in your browser to use SyncTeX.
Contributions are welcome! To contribute:
-
Fork the repository
-
Create a new branch (git checkout -b feature-branch)
-
Commit your changes (git commit -m "Added new feature")
-
Push to the branch (git push origin feature-branch)
-
Open a Pull Request