The Smoothed Finite Element Method (S-FEM) proposed by Liu G.R. can achieve more accurate results than the conventional FEM. Currently, much commercial software and many open-source packages have been developed to analyze various science and engineering problems using the FEM. However, there is little work focusing on designing and developing software or packages for the S-FEM. In this paper, we design and implement an open-source package of the parallel S-FEM for elastic problems by utilizing the Julia language on multi-core CPU. The Julia language is a fast, easy-to-use, and open-source programming language that was originally designed for high-performance computing. We term our package as juSFEM. To the best of the authors knowledge, juSFEM is the first package of parallel S-FEM developed with the Julia language. To verify the correctness and evaluate the efficiency of juSFEM, two groups of benchmark tests are conducted. The benchmark results show that (1) juSFEM can achieve accurate results when compared to commercial FEM software ABAQUS, and (2) juSFEM only requires 543 seconds to calculate the displacements of a 3D elastic cantilever beam model which is composed of approximately 2 million tetrahedral elements, while in contrast the commercial FEM software needs 930 seconds for the same calculation model; (3) the parallel juSFEM executed on the 24-core CPU is approximately 20× faster than the corresponding serial version. Moreover, the structure and function of juSFEM are easily modularized, and the code in juSFEM is clear and readable, which is convenient for further development.is to theoretical redesign the algorithm structure in combination with the characteristics of the S-FEM to improve the computational efficiency. The other is to utilize the parallelism on multicore CPU or many-core GPU. As a variation of the S-FEM, the edge-based smooth element method (ES-FEM) is parallelized on the GPU [9].Because the process of the S-FEM is quite similar to the FEM, most current S-FEM programs are modified on the basis of the FEM [10]. Reference [11] introduced an effective algorithm for establishing the smoothing domains, realizing the automation of 3D entity calculation and adaptive analysis. However, the current S-FEM program, which uses a programming language such as C/C++ or Fortran, usually requires high demand of programming skill, and the code is difficult to read and modify. For programs written in high-level languages such as Python and MATLAB, the code is readable but computationally inefficient [12].In summary, quite few efforts are dedicated to developing the open-source packages of the S-FEM by comprehensively considering the accuracy, efficiency, readability, and ease-ofdevelopment. To balance the program execution efficiency and the ease of implementing the program, in this paper, we design and implement an open-source package of parallel S-FEM for elastic problems by using the Julia language [13]. We term our package as juSFEM. To the best of the authors knowledge, juSFEM is the first package of p...