Learn more about our current job openings and benefits of working at FSL.
Detailed reviews and feedback from past and current clients.
Get to know the Management Team behind FullStack Labs.
Our step-by-step process for designing and developing new applications.
Writings from our team on technology, design, and business.
Get answers to the questions most frequently asked by new clients.
Learn about our company culture and defining principles.
A high level overview of FullStack Labs, who we are, and what we do.
A JavaScript framework that allows rapid development of native Android and IOS apps.
A JavaScript framework maintained by Facebook that's ideal for building complex, modern user interfaces within single page web apps.
A server side programming language known for its ease of use and speed of development.
A lightweight and efficient backend javascript framework for web apps.
An interpreted high-level programming language great for general purpose programming.
A JavaScript framework maintained by Google that addresses many of the challenges encountered when building single-page apps.
A JavaScript framework that allows developers to build large, complex, scalable single-page web applications.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A progressive JavaScript framework known for its approachability, versatility, and performance.
View a sampling of our work implemented using a variety of our favorite technologies.
View examples of the process we use to build custom software solutions for our clients.
View projects implemented using this javascript framework ideal for building complex, modern user interfaces within single page web apps.
View projects implemented using this framework that allows rapid development of native Android and IOS apps.
View projects implemented using this backend javascript framework for web apps.
View projects implemented using this high-level programming language great for general purpose programming.
View projects implemented using this server side programming language known for its ease of use and speed of development.
We have vast experience crafting healthcare software development solutions, including UI/UX Design, Application Development, Legacy Healthcare Systems, and Team Augmentation. Our development services help the healthcare industry by enhancing accessibility, productivity, portability, and scalability.
We offer a range of custom software development solutions for education companies of all sizes. We're experts in Education Software Development and specialists in enhancing the learning experience across web, mobile, and conversational UI.
We're experts in developing Custom Software Solutions for the Logistics Industry. Our work offered a whole new and more efficient way for Logistics companies to manage their crucial operations.
We partner with various construction industry organizations to build custom software development solutions. Our Construction Software Development Services allow construction companies to manage projects, resources, and documentation.
We have vast experience crafting healthcare software development solutions, including UI/UX Design, Application Development, Legacy Healthcare Systems, and Team Augmentation. Our development services help the healthcare industry by enhancing accessibility, productivity, portability, and scalability.
We offer a range of custom software development solutions for education companies of all sizes. We're experts in Education Software Development and specialists in enhancing the learning experience across web, mobile, and conversational UI.
We're experts in developing Custom Software Solutions for the Logistics Industry. Our work offered a whole new and more efficient way for Logistics companies to manage their crucial operations.
We partner with various construction industry organizations to build custom software development solutions. Our Construction Software Development Services allow construction companies to manage projects, resources, and documentation.
Learn more about our current job openings and benefits of working at FSL.
Detailed reviews and feedback from past and current clients.
Get to know the Management Team behind FullStack Labs.
Our step-by-step process for designing and developing new applications.
Writings from our team on technology, design, and business.
Get answers to the questions most frequently asked by new clients.
Learn about our company culture and defining principles.
A high level overview of FullStack Labs, who we are, and what we do.
A JavaScript framework that allows rapid development of native Android and IOS apps.
A JavaScript framework maintained by Facebook that's ideal for building complex, modern user interfaces within single page web apps.
A server side programming language known for its ease of use and speed of development.
A lightweight and efficient backend javascript framework for web apps.
An interpreted high-level programming language great for general purpose programming.
A JavaScript framework maintained by Google that addresses many of the challenges encountered when building single-page apps.
A JavaScript framework that allows developers to build large, complex, scalable single-page web applications.
A progressive JavaScript framework known for its approachability, versatility, and performance.
A dynamic programming language used in all sorts of web and mobile applications.
A cross-platform programming language designed to run robust applications on any device.
A UI toolkit used to build natively compiled applications from a single codebase.
A functional programming language that’s ideal for scalability, maintainability, and reliability.
A Customer Relationship Management (CRM) platform that seamlessly integrates with your business operations.
A high-performance programming language that makes it easy to build simple, reliable, and efficient software.
View a sampling of our work implemented using a variety of our favorite technologies.
View examples of the process we use to build custom software solutions for our clients.
View projects implemented using this javascript framework ideal for building complex, modern user interfaces within single page web apps.
View projects implemented using this framework that allows rapid development of native Android and IOS apps.
View projects implemented using this backend javascript framework for web apps.
View projects implemented using this high-level programming language great for general purpose programming.
View projects implemented using this server side programming language known for its ease of use and speed of development.
The terminal is an important tool for developers, so in this blog post, we are going to talk about how it can improve your productivity.
When you use the terminal, it allows you to do many complicated things just by typing a few commands. Here are a few of my favorites:
Z Shell (Zsh) is a UNIX command interpreter originally written by Paul Falstad. You can find the instructions for the installation here and it works for Linux, Mac, and Windows as well.
There is a popular framework for zsh called oh-my-zsh. Oh My Zsh can help in managing your zsh configuration and comes with a themes repository. By combining this with the preferences of your terminal you can create a beautiful shell to work with. Personally, I like the robbyrussell and agnoster themes; the latter works better using fonts from PowerLine fonts.
Zsh has some interesting features. For example, the autocomplete works for both paths and commands, and it's great when you don't remember exactly how to write them.
If you are using VSCode as your code editor, you can integrate zsh into its features. Just go to Settings and edit the configuration of the terminal inside the features/terminal option.
In my case, I use Linux, so my settings look like this:
-- CODE language-bash keep-markup --
"terminal.integrated.automationShell.linux": "/bin/zsh"
Let’s say you want to build and deploy a react application and that app will be inside an Nginx web server.
Normally, you would have to do a fresh install of the application, the npm dependencies, build the react app, copy the output of the build into Nginx, and then restart Nginx service. This is a repetitive task that you can eliminate by writing a script.
Let's see how to do it from a script file:
1. Create a file deploy.sh on the root directory
2. Write the commands that you need, for example:
3. Change the file to execute mode:
By default a bash file does not have the execution permission enabled, so we will need to add this permission explicitly.
-- CODE language-bash keep-markup --
chmod u+x ./deploy.sh
4. Execute the file:
-- CODE language-bash keep-markup --
./deploy.sh
And that's it! So, the next time you want to deploy, you just need to execute one file instead of four commands.
Changes the file mode.
-- CODE language-bash keep-markup --
chmod u+x ./deploy.sh
If you want to know where is located the executable bin try
-- CODE language-bash keep-markup --
which git
/usr/bin/git
Provides you a list of your previous command
Allows you to see the manual about a command
-- CODE language-bash keep-markup --
man chmod
Allows you to copy files or directories, in this example, we are copying all files in dist folder to /var/www/html folder.
-- CODE language-bash keep-markup --
cp dist/* /var/www/html
Allows you to move files or directories, let’s see an example.
-- CODE language-bash keep-markup --
mv file.txt target_directory
If you need to read the content of a file this command is useful
I hope this brief overview gives you an idea of the things you can do with your terminal.
We’d love to learn more about your project.
Engagements start at $75,000.